Skip to content

Commit

Permalink
update downstream dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcusk19 committed Dec 12, 2024
1 parent 23c14f5 commit 3328da2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.downstream
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RUN set -ex\
; microdnf -y clean all
WORKDIR /build
RUN python3 -m ensurepip --upgrade
COPY requirements.txt .
COPY requirements-cache.txt .
# Note that it installs into PYTHONUSERBASE because of the '--user'
# flag.

Expand All @@ -78,8 +78,8 @@ ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
ENV GRPC_PYTHON_BUILD_SYSTEM_OPENSSL 1

RUN set -ex\
; python3 -m pip install --no-cache-dir --progress-bar off --user $(grep -e '^pip=' -e '^wheel=' -e '^setuptools=' ./requirements.txt) \
; python3 -m pip install --no-cache-dir --progress-bar off --user --requirement requirements.txt \
; python3 -m pip install --no-cache-dir --progress-bar off --user $(grep -e '^pip=' -e '^wheel=' -e '^setuptools=' ./requirements-cache.txt) \
; python3 -m pip install --no-cache-dir --progress-bar off --user --requirement requirements-cache.txt \
;
RUN set -ex\
# Doing this is explicitly against the purpose and use of certifi.
Expand Down

0 comments on commit 3328da2

Please sign in to comment.