aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https
diff options
context:
space:
mode:
authorKrzysztof Gajewski <krzysztof.gajewski@nokia.com>2021-02-15 13:54:28 +0100
committerKrzysztof Gajewski <krzysztof.gajewski@nokia.com>2021-02-15 13:54:28 +0100
commit1e366898551d71168ce47747243377e29e6b989e (patch)
tree3dbfbc68d6574030e7a0d97040d65f4d25ccca5b /test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https
parentc746882a07952a0cd460e6fa8bcac246289db6b9 (diff)
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 <krzysztof.gajewski@nokia.com> Change-Id: Iee95075b701e9b4fe9b0ed3b0d4ee232121a043e
Diffstat (limited to 'test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https')
-rw-r--r--test/mocks/datafilecollector-testharness/http-https-server/Dockerfile-http-https6
1 files changed, 3 insertions, 3 deletions
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