Files
humans.txt/Dockerfile

12 lines
152 B
Docker
Raw Normal View History

2019-12-19 14:53:51 +00:00
FROM node:12
2019-12-19 17:18:03 +00:00
WORKDIR /opt/humans.txt
COPY . /opt/humans.txt
2019-12-19 15:05:06 +00:00
RUN npm i --production
2019-12-19 17:27:36 +00:00
ENV FORCE_COLOR=3
2019-12-19 17:18:03 +00:00
ENTRYPOINT ["bash", "/opt/humans.txt/run.sh"]