Skip to content

Commit

Permalink
CRLF -> LF in docker-entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Nov 3, 2021
1 parent 9087608 commit 2f74ef5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/sh

set -e

# /usr/src/app/external-public kan be mounted as a volume on host to expose
# statics to be hosted by host nginx
if [ -d /usr/src/app/external-public ]; then
cp -R /usr/src/app/client/public/* /usr/src/app/external-public/
fi

exec "$@"
#!/bin/sh

set -e

# /usr/src/app/external-public kan be mounted as a volume on host to expose
# statics to be hosted by host nginx
if [ -d /usr/src/app/external-public ]; then
cp -R /usr/src/app/client/public/* /usr/src/app/external-public/
fi

exec "$@"

0 comments on commit 2f74ef5

Please sign in to comment.