Files
humans.txt/Dockerfile
T
2019-12-19 17:22:47 +00:00

10 lines
133 B
Docker

FROM node:12
WORKDIR /opt/humans.txt
COPY . /opt/humans.txt
RUN npm i --production
ENTRYPOINT ["bash", "/opt/humans.txt/run.sh"]