Merge pull request #338 from Nikolai2038/main

Fix missing configs and assets in Dockerfile
This commit is contained in:
Saifeddine ALOUI 2023-07-31 00:14:53 +02:00 committed by GitHub
commit 67c305039e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,8 @@ COPY ./api /srv/api
COPY ./static /srv/static
COPY ./templates /srv/templates
COPY ./web /srv/web
COPY ./configs /srv/configs
COPY ./assets /srv/assets
# COPY ./models /srv/models # Mounting model is more efficient
CMD ["python", "app.py", "--host", "0.0.0.0", "--port", "9600", "--db_path", "data/database.db"]