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 5f81704 commit c26d904Copy full SHA for c26d904
1 file changed
Dockerfile
@@ -56,9 +56,9 @@ RUN mkdir -p ${JMETER_HOME}
56
57
# Install Python packages
58
RUN python -m venv "${VENV_PATH}"
59
-COPY requirements/requirements.txt /robot/requirements.txt
+COPY requirements/python.in /robot/python.in
60
RUN --mount=type=cache,target=/root/.cache/pip \
61
- pip install -U -r /robot/requirements.txt \
+ pip install -U -r /robot/python.in \
62
&& pip check
63
64
COPY --chmod=0755 entrypoint.sh /usr/local/bin/entrypoint.sh
0 commit comments