diff --git a/Dockerfile.development b/Dockerfile.development index 108f399b31..33460c9dea 100644 --- a/Dockerfile.development +++ b/Dockerfile.development @@ -46,7 +46,7 @@ RUN apk update && apk upgrade && \ # https://www.npmjs.com/package/puppeteer-core?activeTab=versions for corresponding versions # Compatible chromium versions can be found here https://pkgs.alpinelinux.org/packages?name=chromium&branch=v3.18&repo=&arch=&maintainer= # Pinning to an older version of node:alpine3.18 to avoid regular breakage due to version chromium being bumped on current alpine of 3.19 -RUN apk add chromium=119.0.6045.159-r0 --repository https://dl-cdn.alpinelinux.org/alpine/v3.18/community +RUN apk add chromium --repository https://dl-cdn.alpinelinux.org/alpine/v3.18/community # Tell Puppeteer to skip installing Chrome. We'll be using the installed package. ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true diff --git a/Dockerfile.production b/Dockerfile.production index da14f31610..1e4f1ed038 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -90,7 +90,7 @@ RUN apk add --no-cache \ # https://www.npmjs.com/package/puppeteer-core?activeTab=versions for corresponding versions # Compatible chromium versions can be found here https://pkgs.alpinelinux.org/packages?name=chromium&branch=v3.18&repo=&arch=&maintainer= # Pinning to an older version of node to avoid regular breakage due to version chromium being bumped on latest alpine -RUN apk add chromium=119.0.6045.159-r0 --repository https://dl-cdn.alpinelinux.org/alpine/v3.18/community +RUN apk add chromium --repository https://dl-cdn.alpinelinux.org/alpine/v3.18/community # Tell Puppeteer to skip installing Chrome. We'll be using the installed package. ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true