+ DockerFile temporary updates, this is definitely not final.
This commit is contained in:
parent
41a20438bc
commit
8cfe5cdefe
16
Dockerfile
16
Dockerfile
|
@ -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"]
|
Reference in New Issue