From dc21475ab3f27d33c345164c4fb00493aa3d9a57 Mon Sep 17 00:00:00 2001 From: Dmytro Bogatov <dmytro@dbogatov.org> Date: Wed, 17 Oct 2018 20:42:20 -0400 Subject: [PATCH] Fixes. --- Dockerfile | 7 ++----- index.html => website/index.html | 3 +++ 2 files changed, 5 insertions(+), 5 deletions(-) rename index.html => website/index.html (73%) diff --git a/Dockerfile b/Dockerfile index b12d22a..962d0e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,13 @@ FROM dbogatov/docker-images:nginx-latest -MAINTAINER Dmytro Bogatov dmytro@dbogatov.org +LABEL maintainer="Dmytro Bogatov <dmytro@dbogatov.org>" WORKDIR /srv # Copy the source -COPY . . +COPY website . # Copy the NGINX config COPY nginx.conf /etc/nginx/conf.d/default.conf -# Remove NGINX config from source -RUN rm nginx.conf - CMD ["nginx", "-g", "daemon off;"] diff --git a/index.html b/website/index.html similarity index 73% rename from index.html rename to website/index.html index 8e70d41..aa5287b 100644 --- a/index.html +++ b/website/index.html @@ -9,6 +9,9 @@ <h1> Your content </h1> + <p> + <a href="google.com">Google</a> + </p> </body> </html> -- GitLab