Skip to content

Commit

Permalink
chore(deps): update node.js to v20 (#19)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Apr 27, 2024
1 parent b9a31c9 commit 3d364d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a smaller base image for the build stage
FROM node:14.21.3-alpine AS build
FROM node:20.12.2-alpine AS build

WORKDIR /usr/src/app

Expand All @@ -10,7 +10,7 @@ RUN npm install
COPY . .

# Use a smaller base image for the runtime stage
FROM node:14.21.3-alpine
FROM node:20.12.2-alpine

WORKDIR /usr/src/app

Expand Down
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.21.3-alpine AS build
FROM node:20.12.2-alpine AS build

WORKDIR /usr/src/app

Expand All @@ -10,7 +10,7 @@ COPY . .

RUN npm run build

FROM node:14.21.3-alpine
FROM node:20.12.2-alpine

WORKDIR /usr/src/app

Expand Down

0 comments on commit 3d364d1

Please sign in to comment.