From 66cc0283e8148685b1cf096945ad391d73947958 Mon Sep 17 00:00:00 2001 From: renovate Date: Tue, 19 Dec 2023 15:03:45 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.19 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e02d1d78f0..c1f6a033207 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN export PATH=$PATH:$GOPATH/bin && \ # The actual image # Note: I wanted to use the scratch image here, but unfortunatly the go-sqlite bindings require cgo and # because of this, the container would not start when I compiled the image without cgo. -FROM alpine:3.18 AS runner +FROM alpine:3.19 AS runner LABEL maintainer="maintainers@vikunja.io" WORKDIR /app/vikunja ENTRYPOINT [ "/sbin/tini", "-g", "--", "/entrypoint.sh" ]