fixed an issue with the web interface not loading under docker

This commit is contained in:
Scott Dickson 2023-05-31 21:43:56 +10:00
parent 2ee03393d5
commit 07a40aa31a

View File

@ -11,6 +11,7 @@ COPY ./api /srv/api
COPY ./bindings /srv/bindings
COPY ./static /srv/static
COPY ./templates /srv/templates
COPY ./web /srv/web
# 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"]