Update docker image and ci to node 20

This commit is contained in:
shamoon 2023-09-14 10:13:25 -07:00 committed by Trenton H
parent 5fce21e269
commit 3a36d9b1ae
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ jobs:
- pre-commit - pre-commit
strategy: strategy:
matrix: matrix:
node-version: [18.x] node-version: [20.x]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- -

View File

@ -5,7 +5,7 @@
# Purpose: Compiles the frontend # Purpose: Compiles the frontend
# Notes: # Notes:
# - Does NPM stuff with Typescript and such # - Does NPM stuff with Typescript and such
FROM --platform=$BUILDPLATFORM docker.io/node:18-bookworm-slim AS compile-frontend FROM --platform=$BUILDPLATFORM docker.io/node:20-bookworm-slim AS compile-frontend
COPY ./src-ui /src/src-ui COPY ./src-ui /src/src-ui