-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): update to Node 20 and update CircleCI config
- Loading branch information
Showing
2 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# FIXME use alpine | ||
FROM node:18.18.0 | ||
FROM node:20.17.0 | ||
|
||
RUN mkdir -p /usr/app/src \ | ||
&& mkdir -p /usr/app/media \ | ||
|
@@ -18,7 +18,7 @@ ENV NPM_CONFIG_PREFIX=/home/node/.npm-global | |
ENV PATH="/home/node/.npm-global/bin:${PATH}" | ||
|
||
# FIXME remove nodemon for production | ||
RUN npm install -g nodemon@2.0.14 \ | ||
RUN npm install -g nodemon@3.1.4 \ | ||
&& npm install -g [email protected] \ | ||
&& npm cache clean --force \ | ||
&& npm ci | ||
|