gopenfusion/Dockerfile

10 lines
164 B
Docker
Raw Normal View History

2023-06-20 07:12:15 +00:00
FROM alpine:latest
WORKDIR /gopenfusion
# grab binary
COPY ./bin/server ./
RUN chmod +x ./server
2023-06-20 23:24:17 +00:00
ENTRYPOINT [ "/bin/sh", "-l", "-c" ]
2023-06-20 07:12:15 +00:00
CMD ["/gopenfusion/server"]