first commit
Some checks failed
Build Testing / Build & push new image (push) Failing after 9m47s
Build / Build & push new image (push) Successful in 10m39s

This commit is contained in:
2025-02-06 18:29:18 +01:00
commit 3ca69b867f
6 changed files with 952 additions and 0 deletions

26
latest/Dockerfile Normal file
View File

@@ -0,0 +1,26 @@
ARG VERSION=1.33.1
ARG UID=200003
ARG GID=200003
FROM ghcr.io/dani-garcia/vaultwarden:${VERSION}-alpine
LABEL maintainer="Lukas Raub titanz@pm.me"
ARG UID
ARG GID
RUN apk -U upgrade \
&& apk add libstdc++ \
&& rm -rf /var/cache/apk/*
RUN --network=none \
addgroup -g ${GID} vaultwarden \
&& adduser -g ${GID} --ingroup vaultwarden --disabled-password --system vaultwarden
USER vaultwarden
COPY --from=git.conorz.at/titanz-containers/hardened_malloc:latest /install /usr/local/lib/
ENV LD_PRELOAD="/usr/local/lib/libhardened_malloc.so"
ENV ROCKET_PORT=8080
EXPOSE 8080/tcp