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 8d72e12 commit d8600acCopy full SHA for d8600ac
Dockerfile.beatnik
@@ -35,9 +35,11 @@ RUN curl -LsSf https://github.com/astral-sh/uv/releases/download/0.6.0/uv-x86_64
35
tar -xzf uv.gz -C /usr/bin --strip-components=1 && \
36
rm uv.gz
37
38
-# setup a python venv - requried by the RSB to find 'python'
39
-RUN uv venv --python 3.11 ${VIRTUALENV}
+# setup a python venv requried by the RSB, set up pip for iocs to use
40
ENV PATH=${VIRTUALENV}/bin:${PATH}
+RUN uv venv --python 3.11 ${VIRTUALENV} && \
41
+ python -m ensurepip --upgrade && \
42
+ ln -sf /venv/bin/pip3 /venv/bin/pip
43
44
# get and patch the RTEMS Source Builder
45
WORKDIR ${RTEMS_TOP}
0 commit comments