This commit is contained in:
rca 2024-06-23 16:01:46 +09:00
parent f5c7c4cf0a
commit 85c9d7ee08

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