mirror of
https://github.com/onyx-and-iris/q3rcon-proxy.git
synced 2025-01-18 08:40:53 +00:00
10 lines
229 B
Docker
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" ]
|