Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/discovery-provider/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -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 link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the dev docker file needs it?


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
Expand Down
2 changes: 2 additions & 0 deletions packages/discovery-provider/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down