File tree 4 files changed +16
-20
lines changed
4 files changed +16
-20
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ FROM debian:12
17
17
COPY src /src
18
18
19
19
ARG DEBIAN_FRONTEND=noninteractive
20
- RUN apt update && \
20
+ RUN apt update; \
21
21
apt install -y gir1.2-nm-1.0 \
22
22
python3-pip \
23
23
python3-dev \
@@ -27,7 +27,6 @@ RUN apt update && \
27
27
python3-guestfs \
28
28
python3-openssl \
29
29
python3-paramiko \
30
- python3-firewall
31
-
32
- RUN python3 -m pip install --break-system-packages -U pip wheel setuptools && \
33
- python3 -m pip install --break-system-packages -r /src/requirements/build.txt
30
+ python3-firewall; \
31
+ python3 -m pip install --break-system-packages -U pip wheel setuptools; \
32
+ python3 -m pip install --break-system-packages -r /src/requirements/build.txt
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ FROM rockylinux:8
16
16
17
17
COPY src /src
18
18
19
- RUN dnf install -y epel-release && \
19
+ RUN dnf install -y epel-release; \
20
20
dnf install -y python3-pip \
21
21
python3-lxml \
22
22
python3-devel \
@@ -26,7 +26,6 @@ RUN dnf install -y epel-release && \
26
26
python3-firewall \
27
27
python3-pyOpenSSL \
28
28
python3-libnmstate \
29
- python3-libguestfs
30
-
31
- RUN python3 -m pip install -U pip wheel setuptools && \
32
- python3 -m pip install -r /src/requirements/build.txt
29
+ python3-libguestfs; \
30
+ python3 -m pip install -U pip wheel setuptools; \
31
+ python3 -m pip install -r /src/requirements/build.txt
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ FROM rockylinux:9
16
16
17
17
COPY src /src
18
18
19
- RUN dnf install -y epel-release && \
19
+ RUN dnf install -y epel-release; \
20
20
dnf install -y python3-pip \
21
21
python3-lxml \
22
22
python3-devel \
@@ -26,7 +26,6 @@ RUN dnf install -y epel-release && \
26
26
python3-firewall \
27
27
python3-pyOpenSSL \
28
28
python3-libnmstate \
29
- python3-libguestfs
30
-
31
- RUN python3 -m pip install -U pip wheel setuptools && \
32
- python3 -m pip install -r /src/requirements/build.txt
29
+ python3-libguestfs; \
30
+ python3 -m pip install -U pip wheel setuptools; \
31
+ python3 -m pip install -r /src/requirements/build.txt
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ FROM ubuntu:22.04
17
17
COPY src /src
18
18
19
19
ARG DEBIAN_FRONTEND=noninteractive
20
- RUN apt update && \
20
+ RUN apt update; \
21
21
apt install -y gir1.2-nm-1.0 \
22
22
python3-pip \
23
23
python3-dev \
@@ -27,7 +27,6 @@ RUN apt update && \
27
27
python3-guestfs \
28
28
python3-openssl \
29
29
python3-paramiko \
30
- python3-firewall
31
-
32
- RUN python3 -m pip install -U pip wheel setuptools && \
33
- python3 -m pip install -r /src/requirements/build.txt
30
+ python3-firewall; \
31
+ python3 -m pip install -U pip wheel setuptools; \
32
+ python3 -m pip install -r /src/requirements/build.txt
You can’t perform that action at this time.
0 commit comments