Skip to content

Commit d8600ac

Browse files
committed
add pip for use by iocs using this base image
1 parent 8d72e12 commit d8600ac

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile.beatnik

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ RUN curl -LsSf https://github.com/astral-sh/uv/releases/download/0.6.0/uv-x86_64
3535
tar -xzf uv.gz -C /usr/bin --strip-components=1 && \
3636
rm uv.gz
3737

38-
# setup a python venv - requried by the RSB to find 'python'
39-
RUN uv venv --python 3.11 ${VIRTUALENV}
38+
# setup a python venv requried by the RSB, set up pip for iocs to use
4039
ENV PATH=${VIRTUALENV}/bin:${PATH}
40+
RUN uv venv --python 3.11 ${VIRTUALENV} && \
41+
python -m ensurepip --upgrade && \
42+
ln -sf /venv/bin/pip3 /venv/bin/pip
4143

4244
# get and patch the RTEMS Source Builder
4345
WORKDIR ${RTEMS_TOP}

0 commit comments

Comments
 (0)