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 <alastair@alastairs-place.net>
This commit is contained in:
parent
828a1c6ec2
commit
3288450b3e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
# Import frontend assets and set the correct CWD directory so the assets
|
||||||
# are in the default path.
|
# are in the default path.
|
||||||
COPY web .
|
COPY web web
|
||||||
|
|
||||||
ENTRYPOINT ["dex"]
|
ENTRYPOINT ["dex"]
|
||||||
|
|
||||||
|
|
Reference in a new issue