diff --git a/Dockerfile b/Dockerfile index 31c6774..3085a3c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # The multi stage set up *saves* up image size by avoiding the dev dependencies # required to produce dist/ -FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd AS builder +FROM node:25-alpine@sha256:bdf2cca6fe3dabd014ea60163eca3f0f7015fbd5c7ee1b0e9ccb4ced6eb02ef4 AS builder WORKDIR /app # This layer will invalidate upon new dependencies COPY package.json yarn.lock ./ @@ -12,7 +12,7 @@ RUN export YARN_CACHE_FOLDER="$(mktemp -d)" \ COPY . . RUN yarn build -FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd AS app +FROM node:25-alpine@sha256:bdf2cca6fe3dabd014ea60163eca3f0f7015fbd5c7ee1b0e9ccb4ced6eb02ef4 AS app COPY package.json yarn.lock /getsentry-action-release/ # On the builder image, we install both types of dependencies rather than # just the production ones. This generates /getsentry-action-release/node_modules