AppReports/dockerfile
Timo Hocker 4f1b5fd5ef
All checks were successful
continuous-integration/drone/push Build is passing
fix
2020-08-22 10:52:55 +02:00

13 lines
148 B
Plaintext

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