Skip to content

Commit

Permalink
Fix docker images build to handle GPG signature expiration of APT pac…
Browse files Browse the repository at this point in the history
…kages
  • Loading branch information
alquerci committed Apr 26, 2023
1 parent 4625750 commit a489081
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .docker/php53/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV PHP_VERSION 5.3.29
RUN set -eux; \
\
apt-get update; \
apt-get install -y \
apt-get install -y --force-yes \
curl \
autoconf2.13 \
; \
Expand Down Expand Up @@ -40,7 +40,7 @@ RUN set -eux; \
bison \
libbison-dev \
; \
apt-get purge -y --auto-remove \
apt-get purge -y --force-yes --auto-remove \
autoconf2.13 \
; \
rm -r /usr/src/php
Expand Down
2 changes: 1 addition & 1 deletion .docker/php74_82/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN docker-php-ext-install pdo_mysql
#
RUN set -eux; \
apt-get update; \
apt-get install -y --no-upgrade --no-install-recommends \
apt-get install -y --force-yes --no-upgrade --no-install-recommends \
libonig-dev \
; \
\
Expand Down

0 comments on commit a489081

Please sign in to comment.