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