Skip to content

Commit

Permalink
Update Node.js to v20.5
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 22, 2023
1 parent ce70a4a commit e3457bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:20.4-bullseye as deps
FROM node:20.5-bullseye as deps
WORKDIR /app
COPY package.json yarn.lock /app/

RUN yarn install --immutable

FROM node:20.4-bullseye as builder
FROM node:20.5-bullseye as builder
WORKDIR /app
COPY --from=deps /app/node_modules /app/node_modules
COPY . /app
Expand Down
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:20.4-bullseye as deps
FROM node:20.5-bullseye as deps
WORKDIR /app
COPY package.json yarn.lock /app/

RUN yarn install --immutable

FROM node:20.4-bullseye as builder
FROM node:20.5-bullseye as builder
WORKDIR /app
COPY --from=deps /app/node_modules /app/node_modules
COPY . /app
Expand Down

0 comments on commit e3457bb

Please sign in to comment.