Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Some corrections
  • Loading branch information
beiller authored Nov 25, 2018
1 parent dad4e86 commit aae3781
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ ADD requirements.txt /root/requirements.txt

RUN pip3.6 install torch

RUN export CPLUS_INCLUDE_PATH=/usr/local/include/python3.6 m&& pip3.6 install --upgrade pip==9.0.3 && pip3.6 install -r /root/requirements.txt
RUN export CPLUS_INCLUDE_PATH=/usr/local/include/python3.6m && \
pip3.6 install --upgrade pip==9.0.3 && \
pip3.6 install -r /root/requirements.txt

VOLUME ["/root"]

WORKDIR /root

ENTRYPOINT ["python", "main.py", "-f", "samples/emma_input.jpg"]

0 comments on commit aae3781

Please sign in to comment.