Timo Hocker
4f1b5fd5ef
All checks were successful
continuous-integration/drone/push Build is passing
13 lines
148 B
Plaintext
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"]
|