From 595a83383bfdda936c116d87d2b3840e7caf959d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 07:23:35 +0000 Subject: [PATCH] Bump alpine from 3.20.0 to 3.20.3 Bumps alpine from 3.20.0 to 3.20.3. --- 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 520402c..e42f896 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN go mod download COPY . . RUN go install -ldflags "-X main.version=$(git describe --tags)" -FROM alpine:3.20.0 +FROM alpine:3.20.3 ENV ICALPROXY_LISTEN_ADDR=0.0.0.0:8080 COPY --from=0 /go/bin/ical-proxy /usr/local/bin/ ENTRYPOINT [ "ical-proxy" ]