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

Commit

Permalink
fix(node): update to 18.20.1 (#1374)
Browse files Browse the repository at this point in the history
https://nodejs.org/en/blog/vulnerability/april-2024-security-releases/

Co-authored-by: Jamie King <jamie.king@aexp.com>
  • Loading branch information
PixnBits and 10xLaCroixDrinker authored Apr 11, 2024
1 parent c467c32 commit d1f0d4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.17.1
18.20.1
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# which includes build utils preinstalled (e.g. gcc, make, etc).
# This will result in faster and reliable One App docker image
# builds as we do not have to run apk installs for alpine.
FROM node:18.17.1 as builder
FROM node:18.20.1 as builder
WORKDIR /opt/build
RUN npm install -g npm@9.6.7 --registry=https://registry.npmjs.org
COPY --chown=node:node ./ /opt/build
Expand All @@ -29,7 +29,7 @@ RUN NODE_ENV=production npm run build && \

# development image
# docker build . --target=development
FROM node:18.17.1-alpine as development
FROM node:18.20.1-alpine as development
ARG USER
ENV USER ${USER:-node}
ENV NODE_ENV=development
Expand All @@ -47,7 +47,7 @@ COPY --from=builder --chown=node:node /opt/one-app/development ./

# production image
# last so that it's the default image artifact
FROM node:18.17.1-alpine as production
FROM node:18.20.1-alpine as production
ARG USER
ENV USER ${USER:-node}
ENV NODE_ENV=production
Expand Down

0 comments on commit d1f0d4d

Please sign in to comment.