Initial commit

This commit is contained in:
wsc-admin
2026-04-02 19:35:50 +09:00
commit fd3aa6b84f
7 changed files with 58 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 80
CMD ["node", "main.js"]