Files
humans.txt/Dockerfile
2020-08-11 17:48:05 -04:00

12 lines
159 B
Docker

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