diff --git a/Dockerfile b/Dockerfile index b1a6ac7..dcf7c5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,6 @@ COPY . . RUN CGO_ENABLED=0 GOOS=`go env GOHOSTOS` GOARCH=`go env GOHOSTARCH` go build -o out/GoLangTgBot -ldflags="-w -s" . # Run Stage: Run bot using the bot and doppler binary copied from build stage -FROM alpine:3.18.4 +FROM alpine:3.18.5 COPY --from=builder /app/out/GoLangTgBot / CMD ["/GoLangTgBot"]