Skip to content

Commit 9fa615d

Browse files
authored
Merge pull request #304 from infosiftr/zip
Add "zip" extension for new "Export Personal Data" feature
2 parents 47c785a + c919246 commit 9fa615d

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

Dockerfile-alpine.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN set -ex; \
1616
; \
1717
\
1818
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
19-
docker-php-ext-install gd mysqli opcache; \
19+
docker-php-ext-install gd mysqli opcache zip; \
2020
\
2121
runDeps="$( \
2222
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

Dockerfile-cli.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN set -ex; \
99
; \
1010
\
1111
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
12-
docker-php-ext-install gd mysqli opcache; \
12+
docker-php-ext-install gd mysqli opcache zip; \
1313
\
1414
runDeps="$( \
1515
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

Dockerfile-debian.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

php5.6/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

php5.6/cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN set -ex; \
99
; \
1010
\
1111
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
12-
docker-php-ext-install gd mysqli opcache; \
12+
docker-php-ext-install gd mysqli opcache zip; \
1313
\
1414
runDeps="$( \
1515
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

php5.6/fpm-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN set -ex; \
1616
; \
1717
\
1818
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
19-
docker-php-ext-install gd mysqli opcache; \
19+
docker-php-ext-install gd mysqli opcache zip; \
2020
\
2121
runDeps="$( \
2222
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

php5.6/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

php7.0/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

php7.0/cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN set -ex; \
99
; \
1010
\
1111
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
12-
docker-php-ext-install gd mysqli opcache; \
12+
docker-php-ext-install gd mysqli opcache zip; \
1313
\
1414
runDeps="$( \
1515
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

php7.0/fpm-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN set -ex; \
1616
; \
1717
\
1818
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
19-
docker-php-ext-install gd mysqli opcache; \
19+
docker-php-ext-install gd mysqli opcache zip; \
2020
\
2121
runDeps="$( \
2222
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

php7.0/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

php7.1/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

php7.1/cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN set -ex; \
99
; \
1010
\
1111
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
12-
docker-php-ext-install gd mysqli opcache; \
12+
docker-php-ext-install gd mysqli opcache zip; \
1313
\
1414
runDeps="$( \
1515
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

php7.1/fpm-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN set -ex; \
1616
; \
1717
\
1818
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
19-
docker-php-ext-install gd mysqli opcache; \
19+
docker-php-ext-install gd mysqli opcache zip; \
2020
\
2121
runDeps="$( \
2222
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

php7.1/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

php7.2/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

php7.2/cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN set -ex; \
99
; \
1010
\
1111
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
12-
docker-php-ext-install gd mysqli opcache; \
12+
docker-php-ext-install gd mysqli opcache zip; \
1313
\
1414
runDeps="$( \
1515
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

php7.2/fpm-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN set -ex; \
1616
; \
1717
\
1818
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
19-
docker-php-ext-install gd mysqli opcache; \
19+
docker-php-ext-install gd mysqli opcache zip; \
2020
\
2121
runDeps="$( \
2222
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \

php7.2/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN set -ex; \
1212
; \
1313
\
1414
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
15-
docker-php-ext-install gd mysqli opcache; \
15+
docker-php-ext-install gd mysqli opcache zip; \
1616
\
1717
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
1818
apt-mark auto '.*' > /dev/null; \

0 commit comments

Comments
 (0)