From 563c05edb20ec7a5b1d497a062fd592723223843 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Wed, 1 May 2019 22:57:04 +0200 Subject: [PATCH] Fix copying of files --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8abd747..a1ea577 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,5 @@ RUN /bin/drone-hugo && \ # Stage: Run FROM nginx:alpine -WORKDIR /usr/share/nginx/html -COPY --from=build /usr/src/build/public ./ +COPY --from=build /usr/src/build/public /usr/share/nginx/html/ EXPOSE 80