q3rcon-proxy/Dockerfile
2023-01-08 03:26:04 -06:00

10 lines
229 B
Docker

FROM golang:alpine
# Move to /dist directory as the place for resulting binary folder
WORKDIR /dist
# Copy binary from build to main folder
COPY ./main .
# Command to run when starting the container
ENTRYPOINT [ "/dist/main" ]