migrations fix

This commit is contained in:
Blair Vanderlugt 2021-07-28 23:33:34 +00:00
parent 7a3cb7ab75
commit 0d6e228f8a
3 changed files with 6 additions and 8 deletions

View File

@ -15,8 +15,8 @@ RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
COPY . .
RUN python setup.py install
COPY docker/*.sh .
RUN chmod +x /root/*.sh
COPY docker/start_tasker.sh .
RUN chmod +x start_tasker.sh
# ini files in config directory defines the configurable parameters for the application
# they can all be overridden by environment variables

View File

@ -15,10 +15,8 @@ COPY . .
RUN python setup.py install
# TODO please review..can this go into requirements?
RUN pip install $pip_extra_index_url_flag .[africastalking,notifylog]
COPY docker/*.sh .
COPY docker/start_tasker.sh .
RUN chmod +x start_tasker.sh
# ini files in config directory defines the configurable parameters for the application
# they can all be overridden by environment variables

View File

@ -1,3 +1,3 @@
#!/bin/bash
migrate.py -c /usr/local/etc/cic-notify --migrations-dir /usr/local/share/cic-notify/alembic -vv
python migrate.py -c /usr/local/etc/cic-notify --migrations-dir /usr/local/share/cic-notify/alembic -vv