started docker image

This commit is contained in:
2023-06-20 02:12:15 -05:00
parent 727c68aef3
commit e4cf64d7bc
3 changed files with 38 additions and 1 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM alpine:latest
WORKDIR /gopenfusion
# grab binary
COPY ./bin/server ./
RUN chmod +x ./server
CMD ["/gopenfusion/server"]