Docker Library Bot
0274f58b8d
Update 7.4 to 7.4.13
2020-11-26 01:46:30 +00:00
James Sansbury
0b6b7e63cf
Address peer review requests
2020-11-24 14:18:55 -05:00
Tianon Gravi
cf3943ec27
Merge pull request #1088 from q0rban/1087-8.0-pear
...
Configure PHP with pear/pecl installers for PHP 8.0
2020-11-24 18:37:34 +00:00
Tianon Gravi
470ab97adf
Update put-shared link/badge
2020-11-24 08:51:43 -08:00
James Sansbury
2031882159
Add a CONTRIBUTING.md file for n00bs like me
2020-11-24 09:48:57 -05:00
James Sansbury
03a9fae331
Update templates.
2020-11-24 09:31:47 -05:00
James Sansbury
0fdd2f0fc4
Configure PHP with pear/pecl installers for PHP 8.0 #1087
2020-11-24 08:37:56 -05:00
James Sansbury
fa268447c6
Remove messages about pear being removed in PHP 8+.
2020-11-24 08:35:02 -05:00
Docker Library Bot
0180511974
Update 8.0-rc to 8.0.0RC5
2020-11-19 13:46:25 +00:00
Docker Library Bot
ea189aef88
Update 8.0-rc to 8.0.0RC4
2020-11-12 13:46:26 +00:00
yosifkit
16c3e237e0
Merge pull request #1081 from infosiftr/with-pic
...
Add "--with-pic" to configure flags (specifically to fix i386)
2020-11-05 09:27:54 -08:00
Tianon Gravi
3dc9a6988d
Add "--with-pic" to configure flags (specifically to fix i386)
...
After looking/comparing at the output of `./configure` for our i386 and amd64 builds against that of Debian's i386 build, our i386 build was the only one of the three to include `checking whether to force non-PIC code in shared modules... yes` (the other two were `no`).
Debian includes `--with-pic`, and we do not.
Looking at the upstream PHP code for this configure check (313a56add0/configure.ac (L241-L256)
), this makes total sense, and explains why i386 is the only architecture we see this issue on:
```m4
dnl Disable PIC mode by default where it is known to be safe to do so, to avoid
dnl the performance hit from the lost register.
AC_MSG_CHECKING([whether to force non-PIC code in shared modules])
case $host_alias in
i?86-*-linux*|i?86-*-freebsd*)
if test "${with_pic+set}" != "set" || test "$with_pic" = "no"; then
with_pic=no
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
;;
*)
AC_MSG_RESULT(no)
;;
esac
```
This was probably already implied by our `CFLAGS` (and the compiler) on Alpine, but I figured it doesn't hurt to be explicit / consistent.
2020-11-04 17:22:43 -08:00
Tianon Gravi
f9c87657f5
Merge pull request #1078 from infosiftr/no-md5
...
Drop md5 checksums
2020-11-03 22:27:56 +00:00
Joe Ferguson
e12d4c5d46
Drop md5 checksums
2020-10-29 13:51:51 -07:00
Docker Library Bot
5dd0da6ee3
Update 7.4 to 7.4.12
2020-10-29 18:46:34 +00:00
Docker Library Bot
0f0ddeac8b
Update 8.0-rc to 8.0.0RC3
2020-10-29 14:09:57 +00:00
Docker Library Bot
4c5cb612e6
Update 7.3 to 7.3.24
2020-10-29 12:46:23 +00:00
Tianon Gravi
7631b8f26c
Revert "Add back 8-zts-alpine"
...
This reverts commit 32bc79fb18
.
2020-10-26 16:10:41 -07:00
yosifkit
b170def028
Merge pull request #1075 from infosiftr/8-zts-alpine
...
Add back 8-zts-alpine
2020-10-26 15:12:43 -07:00
Tianon Gravi
32bc79fb18
Add back 8-zts-alpine
2020-10-26 12:06:33 -07:00
Tianon Gravi
8723b80dba
Merge pull request #1071 from infosiftr/no-so
...
Drop `.so` from "extension=" in docker-php-ext-enable generated ini files
2020-10-23 12:50:03 -07:00
Joe Ferguson
a940d67380
Drop .so
from "extension=" in docker-php-ext-enable generated ini files
2020-10-23 12:34:00 -07:00
Tianon Gravi
38ac479fe9
Fix .gitattributes specificity
2020-10-16 16:27:26 -07:00
Docker Library Bot
13c031bd1d
Update 8.0-rc to 8.0.0RC2
2020-10-16 12:46:26 +00:00
Docker Library Bot
7ef129842e
Update 8.0-rc to 8.0.0rc1
2020-10-01 21:57:50 +00:00
Tianon Gravi
02a9bf3ec9
Fix version-id bug, drop unused code, check that URL exists before allowing "versions.sh" to continue
2020-10-01 12:22:48 -07:00
Docker Library Bot
c257144e4b
Update 7.4 to 7.4.11
2020-10-01 16:44:33 +00:00
Docker Library Bot
4c91c82a42
Update 7.3 to 7.3.23
2020-10-01 15:33:48 +00:00
Docker Library Bot
fbba7966bc
Update 7.2 to 7.2.34
2020-10-01 14:15:57 +00:00
Docker Library Bot
d2553ca1e6
Update 8.0-rc to 8.0.0beta4
2020-09-17 18:46:24 +00:00
Docker Library Bot
c8c4d223a0
Update 7.4 to 7.4.10
2020-09-03 14:45:47 +00:00
Docker Library Bot
aa19fbf0f8
Update 8.0-rc to 8.0.0beta3
2020-09-03 14:08:03 +00:00
Docker Library Bot
d6838d8e45
Update 7.3 to 7.3.22
2020-09-03 12:46:17 +00:00
yosifkit
2f5aa9ae28
Merge pull request #1052 from infosiftr/jq-template
...
Add initial jq-based templating engine
2020-08-28 17:23:58 -07:00
Tianon Gravi
165f8ca09c
Add initial jq-based templating engine
2020-08-28 15:17:53 -07:00
yosifkit
b44c4f1732
Merge pull request #1011 from docker-library/github-actions
...
Add initial GitHub Actions CI
2020-08-28 11:18:21 -07:00
Tianon Gravi
5dc2907371
Add initial GitHub Actions CI
2020-08-28 10:36:22 -07:00
Docker Library Bot
6ae59ac9da
Update to 8.0.0beta2
2020-08-21 14:48:36 +00:00
Docker Library Bot
098e442542
Update to 7.3.21
2020-08-06 12:46:15 +00:00
Docker Library Bot
8663909bd0
Update to 7.2.33
2020-08-06 12:46:15 +00:00
Docker Library Bot
99792b011b
Update to 8.0.0beta1
2020-08-06 12:46:15 +00:00
Docker Library Bot
14a53e7cbf
Update to 7.4.9
2020-08-06 12:46:14 +00:00
Tianon Gravi
f32cd7315f
Update generated README
2020-07-28 10:21:48 -07:00
Tianon Gravi
dfd08335d8
Merge pull request #1038 from ChrisB9/master
...
Updating php from alpha2 to alpha3
2020-07-23 09:26:53 -07:00
Christian Benthake
9110add39c
Updating php from alpha2 to alpha3
2020-07-23 15:28:47 +02:00
Docker Library Bot
1598214f51
Update to 8.0.0alpha3
2020-07-23 12:50:01 +00:00
Docker Library Bot
a7a32c7483
Update to 7.3.20
2020-07-09 17:52:38 +00:00
Docker Library Bot
25b211a712
Update to 7.2.32
2020-07-09 17:52:38 +00:00
Docker Library Bot
86c8ec4d38
Update to 7.4.8
2020-07-09 17:52:38 +00:00
Tianon Gravi
7bdd5e8c12
Merge pull request #1034 from carusogabriel/php8/alpha2
...
Update to PHP 8.0.0alpha2
2020-07-09 10:52:07 -07:00