mirror of
https://github.com/CPunch/gopenfusion.git
synced 2024-11-14 03:50:05 +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"]
|