mirror of
https://github.com/CPunch/gopenfusion.git
synced 2024-11-12 19:20:06 +00:00
10 lines
164 B
Docker
10 lines
164 B
Docker
FROM alpine:latest
|
|
|
|
WORKDIR /gopenfusion
|
|
|
|
# grab binary
|
|
COPY ./bin/server ./
|
|
RUN chmod +x ./server
|
|
|
|
ENTRYPOINT [ "/bin/sh", "-l", "-c" ]
|
|
CMD ["/gopenfusion/server"] |