From 3155f06cbf7d38182387319d4ca115b1cf0f9cd1 Mon Sep 17 00:00:00 2001 From: Astra Date: Mon, 16 Feb 2026 17:44:01 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f166840..40e323a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN go mod download # Copy source and build a static, stripped binary COPY . . RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \ - go build -ldflags="-s -w" -o /bin/telegram-approval-join ./... + go build -ldflags="-s -w" -o /bin ./... FROM alpine:3.19