This commit is contained in:
odweta
2026-09-10 15:53:08 +02:00
parent 42cc4eafa8
commit 82a6bc20f9
13 changed files with 3090 additions and 115 deletions
+5 -1
View File
@@ -1,4 +1,4 @@
FROM node:latest
FROM node:22-bookworm-slim
WORKDIR /app
@@ -6,6 +6,10 @@ COPY package.json package-lock.json ./
RUN npm ci
RUN apt-get update \
&& apt-get install -y --no-install-recommends fonts-dejavu \
&& rm -rf /var/lib/apt/lists/*
COPY . .
CMD ["npm", "run", "serve"]