Bump node docker version

This commit is contained in:
SebClem 2024-08-13 15:35:48 +02:00
parent 1081896816
commit a9912bd889
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50

View File

@ -1,6 +1,6 @@
ARG BUILD_FROM=ghcr.io/home-assistant/amd64-base:3.18
FROM node:20 AS frontend-builder
FROM node:22-alpine AS frontend-builder
WORKDIR /app
@ -12,7 +12,7 @@ COPY frontend/ .
RUN pnpm build
FROM node:20 AS backend-builder
FROM node:22-alpine AS backend-builder
WORKDIR /app