Initial commit
Some checks failed
Build 28 / Build & push new image (push) Has been cancelled
Build 29 / Build & push new image (push) Successful in 11m14s
Build 30 / Build & push new image (push) Successful in 11m7s

This commit is contained in:
2025-02-06 19:07:24 +01:00
commit 18db859e54
8 changed files with 1042 additions and 0 deletions

12
30/Dockerfile Normal file
View File

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