diff --git a/build/Dockerfile b/build/Dockerfile index 1bd64aae..b25a6533 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -2,7 +2,7 @@ # concatenate them. Also, we have to repeat ARG instructions in each build # stage that uses them. ARG GOLANG_VERSION=1.26.0 -ARG CHROME_VERSION=145.0.7632.116-1 +ARG CHROME_VERSION=146.0.7680.80-1 # ---------------------------------------------- # pdfcpu binary build stage @@ -59,7 +59,7 @@ RUN go build -o gotenberg -ldflags "-s -w -X 'github.com/gotenberg/gotenberg/v8/ FROM debian:13-slim@sha256:1d3c811171a08a5adaa4a163fbafd96b61b87aa871bbc7aa15431ac275d3d430 AS custom-jre-stage # Setting DOCKERFILE_DATE forces a build cache refresh for the package upgrades -ENV DOCKERFILE_DATE=2026-02-26 +ENV DOCKERFILE_DATE=2026-03-16 RUN \ apt-get update -qq &&\ @@ -112,7 +112,7 @@ LABEL org.opencontainers.image.title="Gotenberg" \ org.opencontainers.image.source="https://github.com/gotenberg/gotenberg" # Setting DOCKERFILE_DATE forces a build cache refresh for the package upgrades -ENV DOCKERFILE_DATE=2026-02-26 +ENV DOCKERFILE_DATE=2026-03-16 RUN \ # Create a non-root user. @@ -216,7 +216,7 @@ RUN \ else \ # Install specific version apt-get update -qq &&\ - curl --output /tmp/chrome.deb "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb" &&\ + curl -fsSL --output /tmp/chrome.deb "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb" &&\ DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends /tmp/chrome.deb &&\ mv /usr/bin/google-chrome-stable /usr/bin/chromium &&\ rm -rf /tmp/chrome.deb; \