diff --git a/.drone.yml b/.drone.yml index 461bc5829..f0225359f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -42,7 +42,7 @@ steps: # - .cache - name: dependencies - image: node:20.8-alpine + image: node:21.1-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -55,7 +55,7 @@ steps: # - restore-cache - name: lint - image: node:20.8-alpine + image: node:21.1-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -66,7 +66,7 @@ steps: - dependencies - name: build-prod - image: node:20.8-alpine + image: node:21.1-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -77,7 +77,7 @@ steps: - dependencies - name: test-unit - image: node:20.8-alpine + image: node:21.1-alpine pull: always commands: - corepack enable && pnpm config set store-dir .cache/pnpm @@ -87,7 +87,7 @@ steps: - name: typecheck failure: ignore - image: node:20.8-alpine + image: node:21.1-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -202,7 +202,7 @@ steps: # - .cache - name: build - image: node:20.8-alpine + image: node:21.1-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -285,7 +285,7 @@ steps: # - .cache - name: build - image: node:20.8-alpine + image: node:21.1-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm diff --git a/Dockerfile b/Dockerfile index 0bfcd9f85..2bcae58aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # │─││ │││ │ │ # ┘─┘┘─┘┘┘─┘┘─┘ -FROM --platform=$BUILDPLATFORM node:20.8-alpine AS builder +FROM --platform=$BUILDPLATFORM node:21.1-alpine AS builder WORKDIR /build