Adapted database scripts to be run from the root directoryt

This commit is contained in:
2024-01-01 16:25:58 +00:00
parent fbe7219af2
commit 59d379f657
2 changed files with 3 additions and 2 deletions

View File

@ -4,4 +4,5 @@ WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
ENTRYPOINT [ "python" ]
RUN ["scripts/create_database.py"]
CMD ["app.py" ]