gopenfusion/Dockerfile
CPunch 983588b6c9 dockerfile: switch to scratch
- build.sh: disables CGO and specifies linux
- we really don't need the cstdlib now, and we don't need a busybox shell
2023-06-20 18:33:29 -05:00

7 lines
120 B
Docker

FROM scratch
# grab binary
WORKDIR /gopenfusion
COPY --chmod=0755 ./bin/server ./
ENTRYPOINT [ "/gopenfusion/server" ]