From 3288450b3e3e72f2fd48d65f614cf5ecb9535f80 Mon Sep 17 00:00:00 2001 From: Alastair Houghton Date: Mon, 5 Oct 2020 15:50:53 +0100 Subject: [PATCH] fix: copy the "web" directory. The Dockerfile was changed to do COPY web . which is unfortunate because that means copy the *contents* of the directory "web", rather than copying the directory itself which is what the author intended. Issues: #1820 Signed-off-by: Alastair Houghton --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bd5d7052..e3b0413a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ COPY --from=0 /go/bin/dex /usr/local/bin/dex # Import frontend assets and set the correct CWD directory so the assets # are in the default path. -COPY web . +COPY web web ENTRYPOINT ["dex"]