From 026b06118315d6bc10ff347d50b583404cabe040 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 04:37:42 +0000 Subject: [PATCH] Bump alpine from 3.20.0 to 3.20.1 Bumps alpine from 3.20.0 to 3.20.1. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f7b0676..7238c3f 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.20.0 +FROM alpine:3.20.1 COPY --from=builder /app/out/GoLangTgBot / CMD ["/GoLangTgBot"]