File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ ARG VENV
1616# Set WORKDIR (also creates the dir)
1717WORKDIR $WORKDIR
1818
19- # Build wheels for uWSGI and all requirements
19+ # Install packages to build wheels for uWSGI and other requirements
2020RUN set -eux ;\
2121 export DEBIAN_FRONTEND=noninteractive ;\
2222 apt-get update ;\
@@ -40,8 +40,8 @@ ENV PIP_REQUIRE_VIRTUALENV=1
4040ENV PYTHONPYCACHEPREFIX=/tmp/__pycache__
4141
4242# Install runtime dependencies
43- RUN --mount=source=requirements/main.txt, target=requirements/main.txt \
44- pip install -r requirements/main.txt
43+ RUN --mount=target=/build-ctx \
44+ pip install -r /build-ctx/ requirements/main.txt
4545RUN pip install uwsgi==$UWSGI_VERSION
4646# Install extra packages into the virtual env
4747RUN pip install ${EXTRA_PACKAGES}
You can’t perform that action at this time.
0 commit comments