Skip to content

Commit

Permalink
Fix: Pin to Node Alpine 3.20 (#4841)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-robitaille authored Dec 16, 2024
1 parent 5f8c1e5 commit cb91ee7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine
FROM node:22-alpine3.20

ARG USERNAME=node
ARG USER_UID=1000
Expand All @@ -10,7 +10,7 @@ COPY .yarnrc.yml /src
WORKDIR /src
RUN yarn install

FROM node:22-alpine
FROM node:22-alpine3.20

ARG USERNAME=node
ARG USER_UID=1000
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine as build
FROM node:22-alpine3.20 as build
ENV NODE_ENV=production
ENV NEXT_PUBLIC_ADDRESSCOMPLETE_API_KEY=UR78-BU29-RU35-EP49

Expand All @@ -16,7 +16,7 @@ RUN yarn workspaces focus gcforms flag_initialization
RUN yarn build
RUN yarn workspaces focus gcforms flag_initialization --production

FROM node:22-alpine as final
FROM node:22-alpine3.20 as final
LABEL maintainer="-"

ENV NODE_ENV=production
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.pr
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Form viewier that runs as a Lambda function. It is used to create
# Lambda function review environments for each PR.
FROM node:22-alpine as build
FROM node:22-alpine3.20 as build

ENV NODE_ENV=production
ENV NEXT_OUTPUT_STANDALONE=true
Expand All @@ -19,7 +19,7 @@ RUN corepack enable && yarn set version berry
RUN yarn workspaces focus gcforms flag_initialization
RUN yarn build

FROM node:22-alpine as final
FROM node:22-alpine3.20 as final
LABEL maintainer="-"

ARG COGNITO_APP_CLIENT_ID
Expand Down

0 comments on commit cb91ee7

Please sign in to comment.