This commit is contained in:
12
dockerfile
Normal file
12
dockerfile
Normal 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"]
|
Reference in New Issue
Block a user