Skip to content

Commit 1ffaed2

Browse files
committed
fix: use correct packages for Ubuntu Jammy
Signed-off-by: Mohammed Naser <mnaser@vexxhost.com>
1 parent 3fd900f commit 1ffaed2

1 file changed

Lines changed: 10 additions & 12 deletions

File tree

Dockerfile

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@
33

44
FROM ghcr.io/vexxhost/ubuntu-cloud-archive:2024.1@sha256:e3ca3b58aec06422cca0d5667c4a914b1f4d2afcf666ff62d1c843e48d8d2ce8
55
ENV PATH=/var/lib/openstack/bin:$PATH
6-
RUN <<EOFRUN bash -xe
7-
apt-get update -qq
8-
apt-get install -qq -y --no-install-recommends \
9-
ca-certificates \
10-
libpython3.10 \
11-
lsb-release \
12-
libpcre3 \
13-
python3-setuptools \
14-
sudo
15-
apt-get clean
16-
rm -rf /var/lib/apt/lists/*
17-
EOFRUN
6+
RUN \
7+
apt-get update -qq && \
8+
apt-get install -qq -y --no-install-recommends \
9+
ca-certificates \
10+
libpython3.10 \
11+
lsb-release \
12+
python3-distutils \
13+
sudo && \
14+
apt-get clean && \
15+
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)