From f93d7f2e7aa2a7f236013e74886c4ffe24ea1153 Mon Sep 17 00:00:00 2001 From: Jan Date: Sat, 22 Feb 2025 00:10:02 +0100 Subject: [PATCH] Dockerfile fix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f7fc79f..ab7ca58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN go mod download COPY . . # Build the Go application -RUN go build -o main . +RUN go build -o main ./... # Stage 2: Create a minimal production image FROM alpine:latest