From 07a40aa31ad48b5662b82789d0117c260acd2323 Mon Sep 17 00:00:00 2001 From: Scott Dickson Date: Wed, 31 May 2023 21:43:56 +1000 Subject: [PATCH] fixed an issue with the web interface not loading under docker --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d591144c..43cb787c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]