Compare commits

..

5 Commits

Author SHA1 Message Date
Jan Wagner
0ccfb39d41
Run pipeline on PRs too 2024-12-18 18:18:38 +01:00
waja
a7ade2cbc4
fix: pin Imagick version to fix build error (#102)
Related: #102, #103
2024-12-18 13:32:50 +01:00
3451a6219a fix: wrong path because of usr-merge 2024-12-13 15:10:06 +01:00
Jan Wagner
16acf58089 chore: update Nextcloud to 30.0.4 2024-12-13 11:18:34 +01:00
waja
ae0277a368
chore: raise Alpine Linux version to 3.21
Release notes: https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.21.0
2024-12-13 11:18:06 +01:00
2 changed files with 9 additions and 6 deletions

View File

@ -1,17 +1,17 @@
# -------------- Build-time variables --------------
ARG NEXTCLOUD_VERSION=30.0.3
ARG NEXTCLOUD_VERSION=30.0.4
ARG PHP_VERSION=8.3
ARG NGINX_VERSION=1.26
ARG ALPINE_VERSION=3.20
ARG ALPINE_VERSION=3.21
ARG HARDENED_MALLOC_VERSION=11
ARG SNUFFLEUPAGUS_VERSION=0.10.0
ARG UID=1000
ARG GID=1000
# nextcloud-30.0.3.tar.bz2
ARG SHA256_SUM="e3daa583a8c139a4781ff71dd20d4b98f90c7d881c2a49c2d236e785a0bd08d5"
# nextcloud-30.0.4.tar.bz2
ARG SHA256_SUM="eb6aaba9acef442f2b3e4a996b7ee8a5ed24442f9bba681237fb28ed970e1fa5"
# Nextcloud Security <security@nextcloud.com> (D75899B9A724937A)
ARG GPG_FINGERPRINT="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"
@ -22,6 +22,8 @@ FROM docker.io/library/php:${PHP_VERSION}-fpm-alpine${ALPINE_VERSION} as base
ARG SNUFFLEUPAGUS_VERSION
ENV IMAGICK_SHA 28f27044e435a2b203e32675e942eb8de620ee58
RUN apk -U upgrade \
&& apk add -t build-deps \
$PHPIZE_DEPS \
@ -72,7 +74,8 @@ RUN apk -U upgrade \
&& pecl install smbclient \
&& pecl install APCu \
&& pecl install redis \
&& pecl install imagick \
&& curl -L -o /tmp/imagick.tar.gz https://github.com/Imagick/imagick/archive/${IMAGICK_SHA}.tar.gz && tar --strip-components=1 -xf /tmp/imagick.tar.gz && phpize && ./configure && make && make install \
&& apk add --no-cache --virtual .imagick-runtime-deps imagemagick \
&& docker-php-ext-enable \
smbclient \
redis \

View File

@ -34,4 +34,4 @@ else
fi
# Run processes
exec /bin/s6-svscan /etc/s6.d
exec /usr/bin/s6-svscan /etc/s6.d