Skip to content

Commit

Permalink
fix: Install pip explicitly
Browse files Browse the repository at this point in the history
`pipx` does install Python but not pip, so installing it to keep backward compatibility.
  • Loading branch information
matifali authored Sep 23, 2024
1 parent 865aa40 commit d8608e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion images/base/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY docker.list /etc/apt/sources.list.d/docker.list

# Install baseline packages
RUN apt-get update && \
apt-get install --yes \
apt-get install --yes --no-install-recommends --no-install-suggests \
bash \
build-essential \
ca-certificates \
Expand All @@ -28,6 +28,8 @@ RUN apt-get update && \
locales \
man \
pipx \
python3 \
python3-pip \
software-properties-common \
sudo \
systemd \
Expand Down

0 comments on commit d8608e0

Please sign in to comment.