diff --git a/Dockerfile b/Dockerfile index fbfa31c..36b8671 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,5 +2,5 @@ FROM python:3.8 ADD . /code WORKDIR /code RUN pip install -r requirements_unix.txt -RUN if [ ! -e "configuration/database.sqlite3" ]; then echo 'DELETE_ALL' | python new_initiation.py; fi; +RUN if [ ! -e "/code/configuration/database.sqlite3" ]; then echo 'DELETE_ALL' | python new_initiation.py; fi; CMD python app.py \ No newline at end of file