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