diff --git a/packages/discovery-provider/Dockerfile.dev b/packages/discovery-provider/Dockerfile.dev index 78a1b55a337..414913e0056 100644 --- a/packages/discovery-provider/Dockerfile.dev +++ b/packages/discovery-provider/Dockerfile.dev @@ -73,6 +73,8 @@ COPY requirements.txt requirements.txt RUN --mount=type=cache,target=/root/.cache \ python3 -m pip install -r requirements.txt --no-cache-dir +COPY . . + COPY nginx_conf /usr/local/openresty/conf/ # ARGs can be optionally defined with --build-arg while doing docker build eg in CI and then set to env vars diff --git a/packages/discovery-provider/Dockerfile.prod b/packages/discovery-provider/Dockerfile.prod index e3b93394f71..723c13877d2 100644 --- a/packages/discovery-provider/Dockerfile.prod +++ b/packages/discovery-provider/Dockerfile.prod @@ -72,6 +72,8 @@ COPY requirements.txt requirements.txt RUN --mount=type=cache,target=/root/.cache \ python3 -m pip install -r requirements.txt --no-cache-dir +COPY . . + COPY nginx_conf /usr/local/openresty/conf/ # ARGs can be optionally defined with --build-arg while doing docker build eg in CI and then set to env vars