Files
humans.txt/Dockerfile
T

12 lines
159 B
Docker
Raw Normal View History

2020-08-11 14:48:05 -07:00
FROM node:12-alpine
2019-12-19 14:53:51 +00:00
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"]