Skip to content

Commit

Permalink
Merge pull request #149 from nismod/update-node-18
Browse files Browse the repository at this point in the history
Update Node to v18 active LTS
  • Loading branch information
tomalrussell authored Feb 13, 2023
2 parents 206ed2b + b037b2c commit ea4de55
Show file tree
Hide file tree
Showing 4 changed files with 842 additions and 545 deletions.
2 changes: 1 addition & 1 deletion containers/web-server/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# stage 1 of 2

# name the node stage "builder"
FROM node:16 AS builder
FROM node:18 AS builder
WORKDIR /app
# copy package.json and install -- do this before copying everything else
# to enable more efficient caching by docker (we don't reinstall packages when
Expand Down
2 changes: 1 addition & 1 deletion containers/web-server/Dockerfile-prod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# multistage build of nginx image

# stage 1 of 2
FROM node:16 AS builder
FROM node:18 AS builder
WORKDIR /app

COPY frontend/package.json .
Expand Down
Loading

0 comments on commit ea4de55

Please sign in to comment.