Skip to content

Commit

Permalink
chore(deps): bump node from 18.20.1-alpine to 22.0.0-alpine in /backend
Browse files Browse the repository at this point in the history
Bumps node from 18.20.1-alpine to 22.0.0-alpine.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored May 1, 2024
1 parent 22fa112 commit 499a7e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.20.1-alpine As development
FROM node:22.0.0-alpine As development

WORKDIR /usr/src/app

Expand All @@ -9,7 +9,7 @@ RUN yarn install --frozen-lockfile --immutable --non-interactive --prefer-offlin

USER node

FROM node:18.20.1-alpine As build
FROM node:22.0.0-alpine As build

WORKDIR /usr/src/app

Expand All @@ -21,7 +21,7 @@ RUN yarn run build

USER node

FROM node:18.20.1-alpine As productionDeps
FROM node:22.0.0-alpine As productionDeps

WORKDIR /usr/src/app

Expand All @@ -35,7 +35,7 @@ RUN yarn install --frozen-lockfile --immutable --non-interactive --prefer-offlin

USER node

FROM node:18.20.1-alpine As production
FROM node:22.0.0-alpine As production

# Copy the bundled code from the build stage to the production image
COPY --chown=node:node --from=productionDeps /usr/src/app/node_modules ./node_modules
Expand Down

0 comments on commit 499a7e7

Please sign in to comment.