From 8cb5bc03c50b4051235e2fc4341d56070b0ce5cb Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 19 Oct 2024 22:01:47 +0100 Subject: [PATCH] upd comment --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b5bf6b1..60531fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,9 @@ WORKDIR /usr/src/app COPY go.mod go.sum ./ RUN go mod download && go mod verify -# build binary and place into /usr/local/bin/ COPY . . + +# build binary, place into ./bin/ RUN CGO_ENABLED=0 GOOS=linux go build -o ./bin/q3rcon-proxy ./cmd/q3rcon-proxy/ FROM scratch AS final_image