File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -46,17 +46,17 @@ COPY docker/constraints.in /conf/requirements.txt
46
46
COPY docker/constraints.txt docker/nobinary.txt /conf/
47
47
48
48
49
- RUN . /env/bin/activate && python3 -m pip install --no-cache-dir --upgrade pip setuptools
50
- RUN . /env/bin/activate && python3 -m pip install --no-cache-dir -r /conf/requirements.txt \
49
+ RUN . /env/bin/activate && python3 -m pip --disable-pip-version-check install --no-cache-dir --upgrade pip setuptools
50
+ RUN . /env/bin/activate && python3 -m pip --disable-pip-version-check install --no-cache-dir -r /conf/requirements.txt \
51
51
-c /conf/constraints.txt \
52
52
-c /conf/nobinary.txt
53
53
54
54
# Copy datacube-core source code into container and install from source (with addons for tests).
55
55
COPY . /code
56
56
57
- RUN . /env/bin/activate && python3 -m pip install --no-cache-dir '/code/[all]' \
58
- && python3 -m pip install --no-cache-dir /code/examples/io_plugin \
59
- && python3 -m pip install --no-cache-dir /code/tests/drivers/fail_drivers
57
+ RUN . /env/bin/activate && python3 -m pip --disable-pip-version-check install --no-cache-dir '/code/[all]' \
58
+ && python3 -m pip --disable-pip-version-check install --no-cache-dir /code/examples/io_plugin \
59
+ && python3 -m pip --disable-pip-version-check install --no-cache-dir /code/tests/drivers/fail_drivers
60
60
61
61
# Copy bootstrap script into image.
62
62
COPY docker/assets/with_bootstrap /usr/local/bin/
You can’t perform that action at this time.
0 commit comments