Access denied bug fix
This commit is contained in:
parent
1d5700b842
commit
79c28db2dc
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue