Skip to content

Commit

Permalink
Upgrade to NodeJS 22 (#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorgomezv authored Aug 13, 2024
1 parent e91ee1a commit ce19203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# BUILD CONTAINER
#
FROM node:20 as base
FROM node:22 as base
USER node
ENV NODE_ENV production
WORKDIR /app
Expand All @@ -15,7 +15,7 @@ RUN yarn run build
#
# PRODUCTION CONTAINER
#
FROM node:20-alpine as production
FROM node:22-alpine as production
RUN touch /var/log/fa.log && chown node:node /var/log/fa.log
USER node
ARG GITHUB_RUN_NUMBER
Expand Down

0 comments on commit ce19203

Please sign in to comment.