q3rcon-proxy/Dockerfile

10 lines
229 B
Docker
Raw Normal View History

2023-01-08 09:26:04 +00:00
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" ]