Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobiasKaminsky <tobias@kaminsky.me>2022-10-27 13:24:06 +0300
committertobiasKaminsky <tobias@kaminsky.me>2022-10-27 13:24:06 +0300
commit5f5351978d26cb3ca2944de4e891f4e9965fb5a0 (patch)
treeeb05e3328035aeea6919f4e498e3ae235347dc54
parentc44f4129ad5dcbf64d919709b4a0109cec799a38 (diff)
Shallow-server now uses php 8.1upadeShallowServer
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
-rw-r--r--shallow-server/Dockerfile18
1 files changed, 9 insertions, 9 deletions
diff --git a/shallow-server/Dockerfile b/shallow-server/Dockerfile
index 392603c..dd4cad8 100644
--- a/shallow-server/Dockerfile
+++ b/shallow-server/Dockerfile
@@ -1,19 +1,19 @@
-FROM debian:stable
+FROM debian:buster
# Update repos install packages and cleanup
# all in one step so we avoid large intermediate layers.
-RUN apt-get update && \
+RUN apt-get update && \
apt-get install -y wget gnupg2 git libzip4 apt-transport-https lsb-release ca-certificates && \
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg && \
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list && \
apt-get update && \
- apt-get install -y php7.4-cli php7.4-common php7.4-mbstring \
- php7.4-gd php7.4-imagick php7.4-intl php7.4-bz2 php7.4-xml \
- php7.4-mysql php7.4-zip php7.4-dev curl php7.4-curl \
- php-dompdf php7.4-apcu redis-server php7.4-redis php7.4-smbclient \
- php7.4-ldap unzip php7.4-pgsql php7.4-sqlite make apache2 \
- php7.4-json php7.4-opcache libmagickcore-6.q16-2-extra \
- libapache2-mod-php7.4 && \
+ apt-get install -y php8.1-cli php8.1-common php8.1-mbstring \
+ php8.1-gd php8.1-imagick php8.1-intl php8.1-bz2 php8.1-xml \
+ php8.1-mysql php8.1-zip php8.1-dev curl php8.1-curl \
+ php-dompdf php8.1-apcu redis-server php8.1-redis php8.1-smbclient \
+ php8.1-ldap unzip php8.1-pgsql php8.1-sqlite make apache2 \
+ php8.1-opcache libmagickcore-6.q16-2-extra \
+ libapache2-mod-php8.1 && \
apt-get autoremove -y && apt-get autoclean && apt-get clean && \
rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*