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