Initial commit

This commit is contained in:
Khalil
2026-07-04 10:19:23 +00:00
commit 23baded882
8 changed files with 1272 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --production
COPY server.js ./
EXPOSE 8080
CMD ["node", "server.js"]