Add files via upload

This commit is contained in:
simon-266 2025-11-07 19:34:59 +01:00 committed by GitHub
parent 650494ea3e
commit 7af8e54b6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

10
Dockerfile Normal file
View File

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