mirror of https://github.com/docker/docs.git
Merge pull request #19077 from AvdN/patch-2
example cannot work, pip needs --requirement
This commit is contained in:
commit
d9a3812656
|
@ -312,7 +312,7 @@ specifically required files change.
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
COPY requirements.txt /tmp/
|
COPY requirements.txt /tmp/
|
||||||
RUN pip install /tmp/requirements.txt
|
RUN pip install --requirement /tmp/requirements.txt
|
||||||
COPY . /tmp/
|
COPY . /tmp/
|
||||||
|
|
||||||
Results in fewer cache invalidations for the `RUN` step, than if you put the
|
Results in fewer cache invalidations for the `RUN` step, than if you put the
|
||||||
|
|
Loading…
Reference in New Issue