From cc967f2eb9c5a5907447b4a9b8fcb87a30ed2a5a Mon Sep 17 00:00:00 2001 From: dklimpel <5740567+dklimpel@users.noreply.github.com> Date: Fri, 21 Jun 2024 10:08:45 +0200 Subject: [PATCH] fix integration tests for alpine3 --- integration-tests/Dockerfile_alpine3 | 1 + 1 file changed, 1 insertion(+) diff --git a/integration-tests/Dockerfile_alpine3 b/integration-tests/Dockerfile_alpine3 index 48713cee..c573021e 100644 --- a/integration-tests/Dockerfile_alpine3 +++ b/integration-tests/Dockerfile_alpine3 @@ -4,6 +4,7 @@ MAINTAINER Ahmed # install apache2 and remove un-needed services RUN apk update && \ apk add --no-cache openrc apache2=2.4.59-r0 bash ca-certificates tinyproxy && \ + sed -i 's/Listen 80/Listen 0.0.0.0:80/g' /etc/apache2/httpd.conf && \ rc-update add apache2 && \ rc-update add tinyproxy && \ rm -rf /etc/init.d/networking /etc/init.d/hwdrivers /var/cache/apk/* /tmp/*