Skip to content

Commit

Permalink
Remove dbus from startup in Dockerfile
Browse files Browse the repository at this point in the history
The change in the Dockerfile for firewalld removes the activation of dbus at startup. It is not necessary to enable dbus in the Dockerfile since the host system is already running a dbus instance. This simplifies our Dockerfile and reduces potential for conflicts or errors.
  • Loading branch information
dvershinin committed Jul 11, 2024
1 parent fc6eab3 commit 7dbabb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.firewalld
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM rockylinux:9
# Install systemd and firewalld
RUN yum install -y systemd firewalld dbus python3-pip git \
&& yum clean all \
&& systemctl enable firewalld && systemctl enable dbus
&& systemctl enable firewalld

# Set up the working directory
WORKDIR /app
Expand Down

0 comments on commit 7dbabb8

Please sign in to comment.