Initial commit
All checks were successful
Build / Build & push new image (push) Successful in 11m21s

This commit is contained in:
2025-02-08 22:37:31 +01:00
commit 7ee796ce4b
3 changed files with 146 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
ARG VERSION=5.109.2
ARG UID=200003
ARG GID=200003
FROM ghost:${VERSION}-alpine
LABEL maintainer="Lukas Raub titanz@pm.me"
ARG UID
ARG GID
RUN apk -U upgrade \
&& apk add libstdc++ shadow
RUN --network=none \
addgroup -g ${GID} ghost \
&& adduser -g ${GID} --ingroup ghost --disabled-password --system ghost
USER ghost
COPY --from=git.conorz.at/titanz-containers/hardened_malloc:latest /install /usr/local/lib/
ENV LD_PRELOAD="/usr/local/lib/libhardened_malloc.so"