This commit is contained in:
Akira Tempaku 2025-03-07 15:36:54 +09:00
commit 2a7d118145
Signed by: paku
GPG key ID: 5B4E8402BCC50607
7 changed files with 670 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM node:lts-alpine
USER node
WORKDIR /home/node
COPY . .
RUN npm ci
EXPOSE 3000
CMD ["npm", "run", "start"]