File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 77 - DL3018 # Pin versions in apk add
88 - DL3033 # Pin versions in yum install
99 - DL3041 # Pin versions in dnf install
10- - DL3047 # Avoid use of wget without progress bar
1110 - DL3059 # Multiple consecutive RUN instructions
1211 - SC2016 # Expressions don't expand in single quotes
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ RUN yum remove -y openssl-devel && \
4343 yum install -y openssl11-devel && \
4444 yum clean all
4545
46- RUN wget https://www.python.org/ftp/python/3.10.18/Python-3.10.18.tgz \
46+ RUN wget --no-verbose https://www.python.org/ftp/python/3.10.18/Python-3.10.18.tgz \
4747 && tar xzf Python-3.10.18.tgz \
4848 && cd Python-3.10.18 \
4949 && ./configure \
@@ -61,7 +61,7 @@ RUN bash -c "python3.10 -m pip install virtualenv \
6161 && /vpy3/bin/pip install numpy --only-binary=:all: || true \
6262 && chown -R pillow:pillow /vpy3"
6363
64- RUN wget https://github.com/ninja-build/ninja/releases/download/v1.13.2/ninja-linux.zip \
64+ RUN wget --no-verbose https://github.com/ninja-build/ninja/releases/download/v1.13.2/ninja-linux.zip \
6565 && unzip ninja-linux.zip \
6666 && mv ninja /usr/bin
6767RUN python3.10 -m pip install --no-cache-dir meson
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ RUN bash -c "/usr/bin/python3.11 -m pip install virtualenv \
5050 && chown -R pillow:pillow /vpy3"
5151
5252COPY depends /depends
53- RUN wget https://github.com/ninja-build/ninja/releases/download/v1.13.2/ninja-linux.zip \
53+ RUN wget --no-verbose https://github.com/ninja-build/ninja/releases/download/v1.13.2/ninja-linux.zip \
5454 && unzip ninja-linux.zip \
5555 && mv ninja /usr/bin
5656RUN /usr/bin/python3.11 -m pip install meson
You can’t perform that action at this time.
0 commit comments