Skip to content

Commit 130b1ff

Browse files
Use pip install with --no-cache-dir in Dockerfile.github_action
1 parent 605a4b9 commit 130b1ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile.github_action

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM python:3.12 as base
33
WORKDIR /app
44
ADD pyproject.toml .
55
ADD requirements.txt .
6-
RUN pip install . && rm pyproject.toml requirements.txt
6+
RUN pip install --no-cache-dir . && rm pyproject.toml requirements.txt
77
ENV PYTHONPATH=/app
88
ADD docs docs
99
ADD pr_agent pr_agent

0 commit comments

Comments
 (0)