Upgrade node to 18.16

This commit is contained in:
Jackson Harper
2023-07-05 10:16:30 -07:00
parent 0a5ffb0538
commit fa1ff9ba17
20 changed files with 55 additions and 55 deletions

View File

@ -1,18 +1,18 @@
FROM node:14.18-alpine
FROM node:18.16-alpine
# Installs latest Chromium (92) package.
RUN apk add --no-cache \
chromium \
nss \
freetype \
harfbuzz \
ca-certificates \
ttf-freefont \
nodejs \
yarn \
g++ \
make \
python3
chromium \
nss \
freetype \
harfbuzz \
ca-certificates \
ttf-freefont \
nodejs \
yarn \
g++ \
make \
python3
# Add user so we don't need --no-sandbox.
RUN addgroup -S pptruser && adduser -S -g pptruser pptruser \