diff --git a/README.md b/README.md index 90b0d2e7..27fd26e2 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" --name open Start a queue worker. ```bash -rq worker --with-scheduler --url='redis://:@localhost:6379' default download extract transcribe summarise monitoring approval metadata image image_questions image image_metadata classifications +rq worker --with-scheduler --url='redis://:@localhost:6379' default download extract transcribe summarise monitoring approval metadata image image_metadata classifications rq worker --with-scheduler --url='redis://:redis@localhost:6379' gpt # gpt queue must run on at least one separate worker ``` diff --git a/api/Dockerfile b/api/Dockerfile index 1064a8f5..32913b33 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -15,6 +15,7 @@ COPY db ./db COPY jobs ./jobs COPY tools ./tools COPY courses ./courses +COPY classifiers ./classifiers COPY index ./index COPY setup.py . COPY requirements.txt . diff --git a/worker/Dockerfile b/worker/Dockerfile index 1064a8f5..32913b33 100644 --- a/worker/Dockerfile +++ b/worker/Dockerfile @@ -15,6 +15,7 @@ COPY db ./db COPY jobs ./jobs COPY tools ./tools COPY courses ./courses +COPY classifiers ./classifiers COPY index ./index COPY setup.py . COPY requirements.txt . diff --git a/worker/Dockerfile.gpu_accelerated b/worker/Dockerfile.gpu_accelerated index 7ced0570..a4fdaa7c 100644 --- a/worker/Dockerfile.gpu_accelerated +++ b/worker/Dockerfile.gpu_accelerated @@ -15,6 +15,7 @@ COPY db ./db COPY jobs ./jobs COPY tools ./tools COPY courses ./courses +COPY classifiers ./classifiers COPY index ./index COPY setup.py . COPY requirements.txt .