From 9ba716c90bea7cee557bbc95bfc47baa1ea4bd89 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Fri, 27 Sep 2019 17:46:00 +0200 Subject: [PATCH] Fix copying into container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index efc9729..e01b642 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,5 +23,5 @@ RUN hugo && \ FROM nginx:alpine RUN rm /usr/share/nginx/html/* COPY --from=build /usr/src/build/public /usr/share/nginx/html/ -COPY ./.well-known/ /usr/share/nginx/html/ +COPY ./.well-known/ /usr/share/nginx/html/.well-known EXPOSE 80