Skip to content

Commit

Permalink
fix: copy the "web" directory.
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
al45tair committed Oct 5, 2020
1 parent 828a1c6 commit 3288450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down

0 comments on commit 3288450

Please sign in to comment.