Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
Updated Node JS version to the latest LTS one
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianLeChat committed May 11, 2023
1 parent 54e2210 commit da89d76
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

# Use an customized image of Node.js
# https://hub.docker.com/_/node
FROM node:19-alpine
FROM node:lts-alpine

# Set the working directory to the website files
WORKDIR /usr/src/app

# Copy only files required to install dependencies
COPY package*.json ./
COPY package*.json .

# Install all dependencies
# Use cache mount to speed up installation of existing dependencies
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
"utf-8-validate": "~6.0"
},
"engines": {
"node": ">=20.0",
"npm": ">=9.6"
"node": ">=18.0",
"npm": ">=8.6"
},
"overrides": {
"uuid": "$uuid"
Expand Down

0 comments on commit da89d76

Please sign in to comment.