AppReports/dockerfile
Timo Hocker dc2bd8c690
Some checks failed
continuous-integration/drone/push Build is failing
fix
2020-08-22 10:49:31 +02:00

13 lines
160 B
Plaintext

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