File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ RUN mkdir /src
6
6
WORKDIR /src
7
7
8
8
COPY requirements.txt /src/requirements.txt
9
- RUN pip install -r requirements.txt
9
+ RUN pip install --no-cache-dir - r requirements.txt
10
10
11
11
COPY test-requirements.txt /src/test-requirements.txt
12
- RUN pip install -r test-requirements.txt
12
+ RUN pip install --no-cache-dir - r test-requirements.txt
13
13
14
14
COPY . /src
15
- RUN pip install .
15
+ RUN pip install --no-cache-dir .
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ RUN addgroup --gid $gid sphinx \
10
10
11
11
WORKDIR /src
12
12
COPY requirements.txt docs-requirements.txt ./
13
- RUN pip install -r requirements.txt -r docs-requirements.txt
13
+ RUN pip install --no-cache-dir - r requirements.txt -r docs-requirements.txt
14
14
15
15
USER sphinx
You can’t perform that action at this time.
0 commit comments