dockerized frontend

This commit is contained in:
Alex
2025-03-01 09:37:01 +01:00
parent 903cd6df28
commit 309e3a9d1e
5 changed files with 275 additions and 2 deletions

11
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:latest-alpine AS deploy-node
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
CMD ["node", "index.js"]