Skip to content

Commit

Permalink
docker: add requirements.txt install
Browse files Browse the repository at this point in the history
  • Loading branch information
akhileshh committed Apr 21, 2024
1 parent 90bb7c3 commit b13d8ec
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
COPY override/gcloud /app/venv/bin/gcloud
COPY override/timeout.conf /etc/nginx/conf.d/timeout.conf
COPY override/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
# Hack to get zstandard from PyPI - remove if conda-forge linked lib issue is resolved
RUN pip install --no-cache-dir --no-deps --force-reinstall zstandard==0.21.0

COPY requirements.txt .
RUN pip install --upgrade -r requirements.txt

0 comments on commit b13d8ec

Please sign in to comment.