From 3a36d9b1aebb5d2ad5296db5db970d209c4f9495 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 14 Sep 2023 10:13:25 -0700 Subject: [PATCH] Update docker image and ci to node 20 --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 323bd1230..b4ab6abce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -179,7 +179,7 @@ jobs: - pre-commit strategy: matrix: - node-version: [18.x] + node-version: [20.x] steps: - uses: actions/checkout@v3 - diff --git a/Dockerfile b/Dockerfile index 943567864..9f69baa43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # Purpose: Compiles the frontend # Notes: # - 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