1
0
mirror of https://github.com/CPunch/gopenfusion.git synced 2025-03-13 11:10:13 +00:00
gopenfusion/Dockerfile
2023-06-20 02:12:15 -05:00

9 lines
127 B
Docker

FROM alpine:latest
WORKDIR /gopenfusion
# grab binary
COPY ./bin/server ./
RUN chmod +x ./server
CMD ["/gopenfusion/server"]