Merge pull request #16 from shevron/patch-1

Fix check for `docker-entrypoint.d`
This commit is contained in:
Marko Bocevski 2019-10-03 11:31:53 +02:00 committed by GitHub
commit b037fe0199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
python prerun.py
# Run any startup scripts provided by images extending this one
if [[ -d "docker-entrypoint.d" ]]
if [[ -d "/docker-entrypoint.d" ]]
then
for f in /docker-entrypoint.d/*; do
case "$f" in