Revert "Bump node docker version"

This reverts commit 17e9df048cc3ae4db8bc6bd131b423d3169eba14.
This commit is contained in:
SebClem 2024-08-13 15:46:14 +02:00
parent a9912bd889
commit 5b7251a3ae
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:22-alpine AS frontend-builder
FROM node:20 AS frontend-builder
WORKDIR /app
@ -12,7 +12,7 @@ COPY frontend/ .
RUN pnpm build
FROM node:22-alpine AS backend-builder
FROM node:20 AS backend-builder
WORKDIR /app