From f00f72c065c6dee6eba594d7187775616b0057aa Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 26 Oct 2024 21:46:33 +0200 Subject: [PATCH] fix: create container user home dir --- Containerfile.multiarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile.multiarch b/Containerfile.multiarch index eb60505..36e1a97 100644 --- a/Containerfile.multiarch +++ b/Containerfile.multiarch @@ -15,7 +15,7 @@ ARG TARGETVARIANT ENV OPENLDAP_VERSION=2.6.8-r0 RUN addgroup -g 1001 -S ldap && \ - adduser -S -D -H -u 1001 -G ldap -g ldap ldap && \ + adduser -S -D -H -u 1001 -h /openldap -G ldap -g ldap ldap && \ apk --update add --virtual .build-deps curl && \ apk --update --no-cache add openldap \ openldap-back-ldap \