dockerfile

pull/1/head
Andriy 2023-01-17 22:57:26 +02:00
parent cfd0a4656e
commit 5d327265f0
1 changed files with 15 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM node:18-alpine
WORKDIR /app
COPY ./package.json ./
RUN npm i
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node", "build"]