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 d83abcf commit 2cf7f16Copy full SHA for 2cf7f16
agent_build_refactored/container_images/dependencies.Dockerfile
@@ -3,6 +3,8 @@ RUN python3 -m pip install --upgrade setuptools pip --root /tmp/requrements_root
3
RUN cp -a /tmp/requrements_root/. /
4
ARG AGENT_REQUIREMENTS
5
RUN echo "${AGENT_REQUIREMENTS}" > /tmp/requirements.txt
6
+RUN echo Installing Agent requirements for platfor_system:
7
+RUN python3 -c "import platform; print(platform.system())"
8
RUN python3 -m pip install -r /tmp/requirements.txt --root /tmp/requrements_root
9
ARG TEST_REQUIREMENTS
10
RUN echo "${TEST_REQUIREMENTS}" > /tmp/test_requirments.txt
0 commit comments