diff options
| author | 2021-02-27 11:22:06 +0100 | |
|---|---|---|
| committer | 2021-02-27 11:22:06 +0100 | |
| commit | 0d69175875c42d8cd147aef1330b6c1790e3f73d (patch) | |
| tree | 38861779727d8e8ffcd4c45b7eae7c0664a5ead4 /Docker | |
| parent | 6be9797a269268c3d388a448db5e983fbc70c9cc (diff) | |
Alpine oldest: php5-openssl (#3482)
alpine:3.13 require php5-openssl for some https features.
Otherwise, fail on e.g. the extension page:
```
file_get_contents(): php Unable to find the wrapper "https" - did you
forget to enable it when you configured PHP? in
/var/www/FreshRSS/app/Controllers/extensionController.php on line 45
PHP Warning:
file_get_contents(https://raw.githubusercontent.com/FreshRSS/Extensions/master/extensions.json):
failed to open stream: No such file or directory in
/var/www/FreshRSS/app/Controllers/extensionController.php on line 45
[error] --- Could not fetch available extension from GitHub
```
Does not seem required for newer Alpine versions using PHP7 / PHP8
Diffstat (limited to 'Docker')
| -rw-r--r-- | Docker/Dockerfile-Oldest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Docker/Dockerfile-Oldest b/Docker/Dockerfile-Oldest index 68ff92d69..bcdac6f18 100644 --- a/Docker/Dockerfile-Oldest +++ b/Docker/Dockerfile-Oldest @@ -5,7 +5,7 @@ SHELL ["/bin/ash", "-eo", "pipefail", "-c"] RUN apk add --no-cache \ apache2 php5-apache2 \ php5 php5-curl php5-gmp php5-intl php5-xml php5-zip \ - php5-ctype php5-dom php5-iconv php5-json php5-opcache php5-phar php5-xmlreader php5-zlib \ + php5-ctype php5-dom php5-iconv php5-json php5-opcache php5-openssl php5-phar php5-xmlreader php5-zlib \ php5-pdo_sqlite php5-pdo_mysql php5-pdo_pgsql RUN mkdir -p /var/www/FreshRSS /run/apache2/ |
