Skip to content

Commit

Permalink
fix: keep curl instead of wget
Browse files Browse the repository at this point in the history
  • Loading branch information
saschanowak committed Jul 8, 2024
1 parent 60aafe4 commit b954e6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions php/8.2.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ RUN apt-get update && \
apt-transport-https\
libfcgi-bin \
ca-certificates \
wget \
curl \
gnupg2 \
locales

RUN echo 'deb [signed-by=/usr/share/keyrings/tideways.gpg] https://packages.tideways.com/apt-packages-main any-version main' | tee /etc/apt/sources.list.d/tideways.list && \
wget -qO - 'https://packages.tideways.com/key.gpg' | gpg --dearmor | tee /usr/share/keyrings/tideways.gpg > /dev/null
curl -L -sS 'https://packages.tideways.com/key.gpg' | gpg --dearmor | tee /usr/share/keyrings/tideways.gpg > /dev/null

RUN add-apt-repository ppa:ondrej/php -y

Expand Down
4 changes: 2 additions & 2 deletions php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ RUN apt-get update && \
apt-get -y install --no-install-suggests --no-install-recommends \
libfcgi-bin \
ca-certificates \
wget \
curl \
gnupg2 \
locales

RUN echo 'deb [signed-by=/usr/share/keyrings/tideways.gpg] https://packages.tideways.com/apt-packages-main any-version main' | tee /etc/apt/sources.list.d/tideways.list && \
wget -qO - 'https://packages.tideways.com/key.gpg' | gpg --dearmor | tee /usr/share/keyrings/tideways.gpg > /dev/null
curl -L -sS 'https://packages.tideways.com/key.gpg' | gpg --dearmor | tee /usr/share/keyrings/tideways.gpg > /dev/null

RUN apt-get update && \
apt-get -y install --no-install-suggests --no-install-recommends \
Expand Down

0 comments on commit b954e6e

Please sign in to comment.