nextcloud/31/Dockerfile
titanz d07ce8eeb0
All checks were successful
Build 31 / Build & push new image (push) Successful in 11m3s
Build 30 / Build & push new image (push) Successful in 11m11s
Build 29 / Build & push new image (push) Successful in 11m7s
Nextcloud 31
2025-04-30 15:52:41 +02:00

13 lines
324 B
Docker

ARG VERSION=31
FROM nextcloud:${VERSION}-fpm-alpine
LABEL maintainer="Lukas Raub titanz@pm.me"
RUN apk -U upgrade \
&& apk add libstdc++ \
&& rm -rf /var/cache/apk/*
COPY --from=git.conorz.at/titanz-containers/hardened_malloc:latest /install /usr/local/lib/
ENV LD_PRELOAD="/usr/local/lib/libhardened_malloc.so"