Access denied bug fix

This commit is contained in:
Konstantin Sivakov 2019-02-19 11:02:17 +01:00
parent 1d5700b842
commit 79c28db2dc
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ RUN pip install -e /srv/app/src/ckan && \
RUN rm -rf /srv/app/wheels RUN rm -rf /srv/app/wheels
# Create entrypoint directory for children image scripts # Create entrypoint directory for children image scripts
ONBUILD RUN mkdir /docker-entrypoint.d ONBUILD RUN mkdir docker-entrypoint.d
EXPOSE 5000 EXPOSE 5000

View File

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