Added Dockerfile

This commit is contained in:
2023-12-04 14:41:55 +07:00
parent d805cefeae
commit e5664e7e0d
4 changed files with 57 additions and 4 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", "dev" ]