Skip to content

Commit 5b9be66

Browse files
committed
Fix DL3047: Avoid use of wget without progress bar
1 parent adbe1d2 commit 5b9be66

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.hadolint.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ ignored:
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

amazon-2-amd64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
6767
RUN python3.10 -m pip install --no-cache-dir meson

amazon-2023-amd64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ RUN bash -c "/usr/bin/python3.11 -m pip install virtualenv \
5050
&& chown -R pillow:pillow /vpy3"
5151

5252
COPY 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
5656
RUN /usr/bin/python3.11 -m pip install meson

0 commit comments

Comments
 (0)