This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
|
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"] |