CRLF -> LF in docker-entrypoint
This commit is contained in:
parent
9087608087
commit
2f74ef5ca7
|
@ -1,11 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# /usr/src/app/external-public kan be mounted as a volume on host to expose
|
# /usr/src/app/external-public kan be mounted as a volume on host to expose
|
||||||
# statics to be hosted by host nginx
|
# statics to be hosted by host nginx
|
||||||
if [ -d /usr/src/app/external-public ]; then
|
if [ -d /usr/src/app/external-public ]; then
|
||||||
cp -R /usr/src/app/client/public/* /usr/src/app/external-public/
|
cp -R /usr/src/app/client/public/* /usr/src/app/external-public/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
|
Loading…
Reference in New Issue