-
Notifications
You must be signed in to change notification settings - Fork 465
DL3034
Moritz Röhrich edited this page Oct 21, 2020
·
1 revision
RUN zypper install httpd=2.4.46 && zypper clean
RUN zypper install -y httpd=2.4.46 && zypper clean
Omitting the non-interactive switch causes the command to fail during the build process, because zypper would expect manual input. Use the -y
or the equivalent --no-confirm
flag to avoid this.