Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump node from 21.4.0-alpine to 21.7.3-alpine #138

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# We stop at the end of this step in development, so it also includes the deploy command
# We install jest, eslint and ts-node so we can run tests and lint.

FROM node:21.4.0 AS development
FROM node:21.7.3 AS development

ENV NODE_ENV=development

Expand Down Expand Up @@ -39,7 +39,7 @@ CMD ["npm", "run", ".dev"]
# We run the build command which creates the production bundle
# We run npm ci --only=production to ensure that only the production dependencies are installed

FROM node:21.4.0-alpine AS build
FROM node:21.7.3-alpine AS build

ENV NODE_ENV=production

Expand Down Expand Up @@ -72,7 +72,7 @@ RUN npm ci --omit:dev && npm cache clean --force
# We set the user to node so that the container runs as the node user instead of root
# We run the start command to start the application

FROM node:21.4.0-alpine AS production
FROM node:21.7.3-alpine AS production

ENV NODE_ENV=production

Expand Down
Loading