+ DockerFile temporary updates, this is definitely not final.

This commit is contained in:
kato 2021-08-21 02:01:21 +03:00
parent 41a20438bc
commit 8cfe5cdefe
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
FROM node:alpine
WORKDIR /usr/datahoard
COPY package.json .
RUN npm install
COPY . .
RUN tsc
LABEL version="1.0"
LABEL description="Database Backup Management System"
CMD ["npm", "run"]