Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install pip explicitly #280

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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