Compare commits

...

2 commits

Author SHA1 Message Date
Imbus
fb42380f9c Merge branch 'master' of git.silversoft.se:Imbus/FrostByte 2024-03-05 07:05:18 +01:00
Imbus
7c6bed5fbf Use alpine for node in Containerfile for release 2024-03-05 07:04:24 +01:00

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