diff --git a/apps/cic-notify/docker/Dockerfile b/apps/cic-notify/docker/Dockerfile index 37f1aa0..3453802 100644 --- a/apps/cic-notify/docker/Dockerfile +++ b/apps/cic-notify/docker/Dockerfile @@ -15,8 +15,8 @@ RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \ COPY . . RUN python setup.py install -COPY docker/start_tasker.sh . -RUN chmod +x start_tasker.sh +COPY docker/*.sh . +RUN chmod +x *.sh # ini files in config directory defines the configurable parameters for the application # they can all be overridden by environment variables diff --git a/apps/cic-notify/docker/Dockerfile_ci b/apps/cic-notify/docker/Dockerfile_ci index 85f8720..3db71bc 100644 --- a/apps/cic-notify/docker/Dockerfile_ci +++ b/apps/cic-notify/docker/Dockerfile_ci @@ -15,8 +15,8 @@ COPY . . RUN python setup.py install -COPY docker/start_tasker.sh . -RUN chmod +x start_tasker.sh +COPY docker/*.sh . +RUN chmod +x *.sh # ini files in config directory defines the configurable parameters for the application # they can all be overridden by environment variables diff --git a/apps/cic-notify/docker/db.sh b/apps/cic-notify/docker/db.sh index 71099a2..a4f79bd 100644 --- a/apps/cic-notify/docker/db.sh +++ b/apps/cic-notify/docker/db.sh @@ -1,3 +1,3 @@ #!/bin/bash - -python migrate.py -c /usr/local/etc/cic-notify --migrations-dir /usr/local/share/cic-notify/alembic -vv +set -e +python scripts/migrate.py -c /usr/local/etc/cic-notify --migrations-dir /usr/local/share/cic-notify/alembic -vv