We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fd900f commit 1ffaed2Copy full SHA for 1ffaed2
1 file changed
Dockerfile
@@ -3,15 +3,13 @@
3
4
FROM ghcr.io/vexxhost/ubuntu-cloud-archive:2024.1@sha256:e3ca3b58aec06422cca0d5667c4a914b1f4d2afcf666ff62d1c843e48d8d2ce8
5
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
+RUN \
+ apt-get update -qq && \
+ apt-get install -qq -y --no-install-recommends \
+ ca-certificates \
+ libpython3.10 \
+ lsb-release \
+ python3-distutils \
+ sudo && \
+ apt-get clean && \
+ rm -rf /var/lib/apt/lists/*
0 commit comments