Skip to content

Commit c0dba47

Browse files
infra: Downgrade to php 8.4 and update version.
Also sync with upstream to use GitHub download for faster build time.
1 parent 51e0f39 commit c0dba47

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
2-
FROM php:8.5-apache-trixie
2+
FROM php:8.4-apache-trixie
33

44
# entrypoint.sh and cron.sh dependencies
55
RUN set -ex; \
@@ -128,7 +128,7 @@ RUN { \
128128
} > /etc/apache2/conf-available/apache-limits.conf; \
129129
a2enconf apache-limits
130130

131-
ENV NEXTCLOUD_VERSION 32.0.1
131+
ENV NEXTCLOUD_VERSION 32.0.2
132132

133133
RUN set -ex; \
134134
fetchDeps=" \
@@ -139,9 +139,9 @@ RUN set -ex; \
139139
apt-get install -y --no-install-recommends $fetchDeps; \
140140
\
141141
curl -fsSL -o nextcloud.tar.bz2 \
142-
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \
142+
"https://github.com/nextcloud-releases/server/releases/download/v${NEXTCLOUD_VERSION}/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \
143143
curl -fsSL -o nextcloud.tar.bz2.asc \
144-
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2.asc"; \
144+
"https://github.com/nextcloud-releases/server/releases/download/v${NEXTCLOUD_VERSION}/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2.asc"; \
145145
export GNUPGHOME="$(mktemp -d)"; \
146146
# gpg key from https://nextcloud.com/nextcloud.asc
147147
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

0 commit comments

Comments
 (0)