Skip to content

Commit

Permalink
chore: Update Dockerfile to node:18 (#2515)
Browse files Browse the repository at this point in the history
  • Loading branch information
landrito authored Apr 26, 2024
1 parent 7670236 commit 4c866f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16 as compiler
FROM node:18.20.1 as compiler

WORKDIR /usr/src/prism

Expand All @@ -8,7 +8,7 @@ COPY packages/ /usr/src/prism/packages/
RUN yarn && yarn build

###############################################################
FROM node:16 as dependencies
FROM node:18.20.1 as dependencies

WORKDIR /usr/src/prism/

Expand All @@ -34,7 +34,7 @@ RUN if [ $(uname -m) != "aarch64" ]; then curl -sfL https://gobinaries.com/tj/no
RUN if [ $(uname -m) != "aarch64" ]; then node-prune; fi

###############################################################
FROM node:16-alpine
FROM node:18.20.1-alpine

WORKDIR /usr/src/prism
ARG BUILD_TYPE=development
Expand Down

0 comments on commit 4c866f9

Please sign in to comment.