Initial commit
Some checks failed
Build 29 / Build & push new image (push) Waiting to run
Build 30 / Build & push new image (push) Waiting to run
Build 28 / Build & push new image (push) Has been cancelled

This commit is contained in:
2025-02-06 19:01:02 +01:00
commit 407c8deb63
8 changed files with 1042 additions and 0 deletions

12
28/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
ARG VERSION=28
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"