deploy scripts

This commit is contained in:
2022-04-16 22:58:32 +03:00
parent b84e5c707f
commit 84b7c983d9
4 changed files with 45 additions and 1 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM 'node:14'
RUN mkdir -p /usr/src/app/src/
WORKDIR /usr/src/app/
COPY ./src /usr/src/app/src
COPY ./package.json /usr/src/app/package.json
COPY ./.env /usr/src/app/.env
RUN npm install --only=prod
EXPOSE 8043
CMD ["npm", "run", "up:prod"]