Added Docker

This commit is contained in:
2023-12-04 14:47:30 +07:00
parent cd4d75d0c4
commit 135501f4b4
2 changed files with 35 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:20-alpine
RUN apk add curl
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
CMD [ "npm", "run", "start" ]