Initial commit

This commit is contained in:
wsc-admin
2026-04-02 19:35:52 +09:00
commit 3cbbc127c0
8 changed files with 85 additions and 0 deletions

8
Dockerfile Normal file
View File

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