Skip to content

Commit

Permalink
chore: Update Dockerfile to node:18.20.3 (stoplightio#2536)
Browse files Browse the repository at this point in the history
Co-authored-by: Brenda Rearden <brendarearden@gmail.com>
  • Loading branch information
2 people authored and ilanashapiro committed Aug 22, 2024
1 parent 6636403 commit 0180f89
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:18.20.1 as compiler
FROM node:18 as compiler

WORKDIR /usr/src/prism

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

###############################################################
FROM node:18.20.1 as dependencies
FROM node:18 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:18.20.1-alpine
FROM node:18-alpine

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

0 comments on commit 0180f89

Please sign in to comment.