Skip to content

Commit

Permalink
updated dockerfile (mushorg#429) - related (mushorg#428)
Browse files Browse the repository at this point in the history
With the recent update to pip 19.01 there was a build slight issue with the docker commands, refer here:
pypa/pip#6197
  • Loading branch information
Sladyn authored and xandfury committed Feb 2, 2019
1 parent b1d7410 commit fe65c16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ RUN chown conpot:conpot -R /opt/conpot
# Install Python requirements
USER conpot
WORKDIR /opt/conpot
RUN pip3 install --user --no-cache-dir -U pip setuptools
RUN pip3 install --user --no-cache-dir coverage
RUN pip3 install --user --no-cache-dir -r requirements.txt
RUN pip3 install --user --no-cache-dir -U --no-use-pep517 pip setuptools
RUN pip3 install --user --no-cache-dir --no-use-pep517 coverage
RUN pip3 install --user --no-cache-dir --no-use-pep517 -r requirements.txt

# Install the Conpot application
RUN python3 setup.py install --user --prefix=
Expand Down

0 comments on commit fe65c16

Please sign in to comment.