From 1e366898551d71168ce47747243377e29e6b989e Mon Sep 17 00:00:00 2001 From: Krzysztof Gajewski Date: Mon, 15 Feb 2021 13:54:28 +0100 Subject: Add HTTPS to DFC tests - CSIT tests are unable to run due to some Docker error. this patch should fix this + one another fix Issue-ID: DCAEGEN2-2528 Signed-off-by: Krzysztof Gajewski Change-Id: Iee95075b701e9b4fe9b0ed3b0d4ee232121a043e --- .../http-https-server/Dockerfile-http-https | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https') diff --git a/test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https b/test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https index a2d8bf8cc..754d01af0 100644 --- a/test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https +++ b/test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https @@ -4,12 +4,12 @@ RUN apk update ENV APACHE_LOG_DIR /usr/local/apache2/logs -RUN mkdir /usr/local/apache2/certs - -COPY --chown=root:root apache2/certs /usr/local/apache2/certs COPY --chown=root:root apache2/conf /usr/local/apache2/conf COPY --chown=root:root apache2/conf/extra /usr/local/apache2/conf/extra RUN chmod 644 /usr/local/apache2/conf/.htpasswd RUN chmod 644 /usr/local/apache2/conf/httpd.conf RUN chmod 644 /usr/local/apache2/conf/extra/httpd-ssl.conf + +RUN mkdir /usr/local/apache2/certs +COPY --chown=root:root apache2/certs /usr/local/apache2/certs -- cgit