mirror of
https://github.com/CPunch/gopenfusion.git
synced 2024-11-10 18:40:04 +00:00
CPunch
983588b6c9
- build.sh: disables CGO and specifies linux - we really don't need the cstdlib now, and we don't need a busybox shell
7 lines
120 B
Docker
7 lines
120 B
Docker
FROM scratch
|
|
|
|
# grab binary
|
|
WORKDIR /gopenfusion
|
|
COPY --chmod=0755 ./bin/server ./
|
|
|
|
ENTRYPOINT [ "/gopenfusion/server" ] |