Skip to content

Commit

Permalink
fix: install pip explicitly (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
matifali authored Sep 23, 2024
1 parent 865aa40 commit 58eda64
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions images/base/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ ENV DEBIAN_FRONTEND=noninteractive

# Install the Docker apt repository
RUN apt-get update && \
apt-get upgrade --yes && \
apt-get install --yes ca-certificates && \
apt-get upgrade --yes --no-install-recommends --no-install-suggests && \
apt-get install --yes --no-install-recommends --no-install-suggests \
ca-certificates && \
rm -rf /var/lib/apt/lists/*
COPY docker-archive-keyring.gpg /usr/share/keyrings/docker-archive-keyring.gpg
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 \
containerd.io \
curl \
docker-ce \
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 58eda64

Please sign in to comment.