Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions apps/nextcloud-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG VERSION
FROM public.ecr.aws/docker/library/nextcloud:${VERSION}

Check warning on line 2 in apps/nextcloud-fpm/Dockerfile

View workflow job for this annotation

GitHub Actions / Build nextcloud-fpm / Build (linux/amd64)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG public.ecr.aws/docker/library/nextcloud:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 2 in apps/nextcloud-fpm/Dockerfile

View workflow job for this annotation

GitHub Actions / Build nextcloud-fpm / Build (linux/arm64)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG public.ecr.aws/docker/library/nextcloud:${VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/
ARG TARGETARCH

# Adds SURY PHP repository (This is a workaround because IMAP php extension is no longer available in Debian Trixie)
Expand Down Expand Up @@ -47,22 +47,27 @@
echo "Skipping intel-media-va-driver-non-free on $TARGETARCH"; \
fi; \
# Optional package installation
savedAptMark="$(apt-mark showmanual)"; \
savedAptMark="$(apt-mark showmanual)"; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
libbz2-dev \
libkrb5-dev \
libc-client-dev \
libssl-dev \
libsmbclient-dev \
libmagickcore-dev \
; \
\
docker-php-ext-configure imap --with-kerberos --with-imap-ssl; \
docker-php-ext-install \
bz2 \
imap \
soap \
; \
\
pecl install imap \
&& docker-php-ext-enable imap \
; \
\
pecl install smbclient; \
docker-php-ext-enable smbclient; \
\
Expand Down
2 changes: 1 addition & 1 deletion apps/nextcloud-fpm/docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "APP" {

variable "VERSION" {
// renovate: datasource=docker depName=public.ecr.aws/docker/library/nextcloud versioning=regex:^(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+)-fpm$
default = "32.0.6-fpm"
default = "33.0.0-fpm"
}

variable "LICENSE" {
Expand Down