ready for test deployment
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-08-22 10:43:35 +02:00
parent b70b80bbea
commit 8d98cf8b66
9 changed files with 62 additions and 13 deletions

12
dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:lts-alpine
RUN mkdir appreports
COPY ./* /appreports
WORKDIR /appreports
RUN yarn; \
yarn compile;
EXPOSE 3000
ENTRYPOINT ["node", "index.js"]