Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

pin versions of all python dependencies #56

Merged
merged 3 commits into from
Jun 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/1.13/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1

# cython, falcon, gunicorn
RUN \
${PIP} install cython falcon gunicorn gevent requests
${PIP} install cython==0.29.10 falcon==2.0.0 gunicorn==19.9.0 gevent==1.4.0 requests==2.21.0

COPY ./ /

Expand Down
10 changes: 5 additions & 5 deletions docker/1.13/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ RUN \
apt-get clean

RUN ${PIP} install -U --no-cache-dir awscli==1.16.130 \
cython \
falcon \
gunicorn \
gevent \
requests
cython==0.29.10 \
falcon==2.0.0 \
gunicorn==19.9.0 \
gevent==1.4.0 \
requests==2.21.0

COPY ./ /

Expand Down