Skip to content

Commit

Permalink
Bump node from 20.18.0-alpine to 20.18.1-alpine
Browse files Browse the repository at this point in the history
Bumps node from 20.18.0-alpine to 20.18.1-alpine.

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 25, 2024
1 parent 94ad0ea commit f6bcdc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.18.0-alpine As deps
FROM node:20.18.1-alpine As deps
WORKDIR /usr/src/app
COPY --chown=root:root ./yarn.lock ./
COPY --chown=root:root ./package.json ./
Expand All @@ -10,7 +10,7 @@ RUN yarn install --frozen-lockfile --immutable --non-interactive --prefer-offlin

USER root

FROM node:20.18.0-alpine As build
FROM node:20.18.1-alpine As build
WORKDIR /usr/src/app

COPY --chown=root:root ./ ./
Expand All @@ -22,7 +22,7 @@ RUN yarn run build

USER root

FROM node:20.18.0-alpine As prodDeps
FROM node:20.18.1-alpine As prodDeps
WORKDIR /usr/src/app

COPY --chown=root:root ./yarn.lock ./
Expand All @@ -37,7 +37,7 @@ RUN yarn install --frozen-lockfile --immutable --non-interactive --prefer-offlin

USER root

FROM node:20.18.0-alpine As prod
FROM node:20.18.1-alpine As prod
WORKDIR /usr/src/app

COPY --chown=root:root --from=prodDeps /usr/src/app/ ./
Expand Down

0 comments on commit f6bcdc6

Please sign in to comment.