AppReports/dockerfile
Timo Hocker 8d98cf8b66
Some checks failed
continuous-integration/drone/push Build is failing
ready for test deployment
2020-08-22 10:43:35 +02:00

13 lines
159 B
Plaintext

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