Skip to content

Commit

Permalink
Workaround for pip problem in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
kumy committed Jan 26, 2019
1 parent 3328f5c commit 45e3360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apk add --no-cache \

COPY requirements.txt requirements.txt
COPY requirements requirements
RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
RUN pip install --upgrade pip && pip install --no-cache-dir --no-use-pep517 -r requirements.txt

WORKDIR /src
EXPOSE 5000
Expand Down

0 comments on commit 45e3360

Please sign in to comment.