first commit

This commit is contained in:
2026-05-06 10:52:59 +09:00
commit ca9ff7ba25
11 changed files with 1691 additions and 0 deletions

12
Dockerfile Normal file
View File

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