Skip to content

Commit

Permalink
Run wget with -q option
Browse files Browse the repository at this point in the history
Adresses Hadolint issue - DL3047 info: Avoid use of wget without progress
bar.
  • Loading branch information
sbreker committed Apr 26, 2024
1 parent 3e5c1c5 commit c085307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1.1.21.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apk add --no-cache --virtual .build-deps \
hiredis-dev=1.2.0-r0 \
mariadb-dev=10.11.6-r0 \
libmemcached-dev=1.1.4-r1 \
&& wget -O gearmand.tar.gz "https://github.com/gearman/gearmand/releases/download/$GEARMAND_VERSION/gearmand-$GEARMAND_VERSION.tar.gz" \
&& wget -O gearmand.tar.gz -q "https://github.com/gearman/gearmand/releases/download/$GEARMAND_VERSION/gearmand-$GEARMAND_VERSION.tar.gz" \
&& echo "$GEARMAND_SHA1 gearmand.tar.gz" | sha1sum -c - \
&& mkdir -p /usr/src/gearmand \
&& tar -xzf gearmand.tar.gz -C /usr/src/gearmand --strip-components=1 \
Expand Down

0 comments on commit c085307

Please sign in to comment.