Use alpine for node in Containerfile for release

This commit is contained in:
Imbus 2024-03-05 07:04:24 +01:00
parent 44373dd2e2
commit 7c6bed5fbf

View file

@ -2,7 +2,7 @@
# We use node:latest as the base image.
# Essentially we build the frontend SPA with vite and
# make it available in the public directory.
FROM docker.io/node:latest as client
FROM docker.io/node:alpine as client
WORKDIR /build
ADD client-solid /build
RUN npm install