First commit

This commit is contained in:
2025-07-09 01:00:28 +02:00
commit bdecfce144
41 changed files with 7956 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:lts-alpine
RUN npm install -g http-server
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
RUN npm run build
EXPOSE 8080
CMD [ "http-server", "dist" ]