chore: Add Dockerfile for containerization

This commit is contained in:
Keisuke Hirata 2024-09-13 17:21:39 +09:00
parent d5e23f5033
commit b455b9e09b

13
DockerFile Normal file
View File

@ -0,0 +1,13 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json /app
COPY package-lock.json /app
COPY .env /app
COPY tsconfig.json /app
COPY src /app/src
RUN npm i
CMD ["npm", "run", "dev"]