Skip to content

Commit b13d8ec

Browse files
committed
docker: add requirements.txt install
1 parent 90bb7c3 commit b13d8ec

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
55
COPY override/gcloud /app/venv/bin/gcloud
66
COPY override/timeout.conf /etc/nginx/conf.d/timeout.conf
77
COPY override/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
8-
# Hack to get zstandard from PyPI - remove if conda-forge linked lib issue is resolved
9-
RUN pip install --no-cache-dir --no-deps --force-reinstall zstandard==0.21.0
8+
9+
COPY requirements.txt .
10+
RUN pip install --upgrade -r requirements.txt

0 commit comments

Comments
 (0)