dockerfile wip

This commit is contained in:
rca 2024-06-23 15:38:52 +09:00
parent 468f3e8c8f
commit 9935ebfa9b

17
DockerFile Normal file
View File

@ -0,0 +1,17 @@
FROM node:18
WORKDIR /usr/src/kidshift
COPY package*.json ./
RUN npm install
COPY . .
RUN npx prisma generate
RUN npm run build
CMD ["npm", "start"]
EXPOSE 3000