From 7c6bed5fbf112d555e438849c5297e1be813abb6 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 5 Mar 2024 07:04:24 +0100 Subject: [PATCH] Use alpine for node in Containerfile for release --- container/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/Containerfile b/container/Containerfile index bb41baf..b4386c2 100644 --- a/container/Containerfile +++ b/container/Containerfile @@ -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