We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c3b591 commit 2e5a7f3Copy full SHA for 2e5a7f3
Dockerfile
@@ -65,7 +65,7 @@ RUN R -e "renv::restore(lockfile = '/project/renv.lock', prompt = FALSE)"
65
# Copy Python requirements file if exists (cached separately)
66
COPY setup/requirements.txt ${REQ_FILE}
67
RUN python3 -m venv /root/.virtualenvs/venv && \
68
- ${VENV_PATH}/bin/pip install --cache-dir ${PIP_CACHE_DIR} -r ${REQ_FILE}
+ "${VENV_PATH}/bin/pip" install --cache-dir "${PIP_CACHE_DIR}" -r "${REQ_FILE}"
69
70
71
0 commit comments