Added project files

This commit is contained in:
2026-05-08 09:49:11 +02:00
parent 6cfc3924b3
commit 3db34b9b93
3 changed files with 101 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:18-slim
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --only=production
COPY . .
EXPOSE 8080
CMD [ "npm", "start" ]