build frontend in node docker container

This commit is contained in:
2025-12-18 19:28:39 +01:00
parent 45a842b6fe
commit a38fd042ba
3 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
FROM node:alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN npm run build