diff options
| -rw-r--r-- | docker-image/Dockerfile | 2 | ||||
| -rw-r--r-- | docker-image/Justfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docker-image/Dockerfile b/docker-image/Dockerfile index 98d3ead..00a212b 100644 --- a/docker-image/Dockerfile +++ b/docker-image/Dockerfile @@ -27,7 +27,7 @@ COPY index.pl /usr/local/apache2/cgi-bin/index.pl RUN chmod 755 /usr/local/apache2/cgi-bin/index.pl # Create a redirect from / to /cgi-bin/index.pl -RUN echo '<meta http-equiv="refresh" content="0;url=/cgi-bin/index.pl">' > /usr/local/apache2/htdocs/index.html +RUN echo '<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="refresh" content="0; url=/cgi-bin/index.pl"><title>Redirecting...</title></head><body><p>Redirecting to <a href="/cgi-bin/index.pl">IPv6 Test</a>...</p></body></html>' > /usr/local/apache2/htdocs/index.html EXPOSE 80 diff --git a/docker-image/Justfile b/docker-image/Justfile index f50ecca..5a8b49b 100644 --- a/docker-image/Justfile +++ b/docker-image/Justfile @@ -1,4 +1,4 @@ -VERSION := "1.5.0" +VERSION := "1.6.0" REGISTRY := "registry.lan.buetow.org:30001" IMAGE := "ipv6test" |
