From 963fba25df2b47ade55dcbc7ef2f03a26fefb470 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Mon, 9 Sep 2024 15:02:28 -0700 Subject: [PATCH] Missed a spot --- docker-compose.yml | 1 - docker-compose/django/Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index c925ce0d..67736780 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,7 +32,6 @@ services: # for example to install dependencies - ./docker-compose/django/start:/start # Load the ethicalads_ext code from the host, so we don't have to rebuild - - ${PWD}/${EA_EXT_PATH:-../ethicalads-model}:/model - ${PWD}/${EA_EXT_PATH:-../ethicalads-ext}:/ethicalads-ext env_file: - ./.envs/local/django diff --git a/docker-compose/django/Dockerfile b/docker-compose/django/Dockerfile index a07053af..ab981a88 100644 --- a/docker-compose/django/Dockerfile +++ b/docker-compose/django/Dockerfile @@ -44,7 +44,7 @@ RUN --mount=type=cache,target=/root/.cache/pip pip install -r /requirements/prod # Its requirements are huge and include PyTorch and other ML tools. # If not needed, make sure to set `ADSERVER_ANALYZER_BACKEND=` (empty string) # in your environment file `./envs/local/django`. -RUN --mount=type=cache,target=/root/.cache/pip pip install -r /requirements/st.txt +RUN --mount=type=cache,target=/root/.cache/pip pip install -r /requirements/analyzer.txt COPY ./docker-compose/django/start /start RUN chmod +x /start