diff --git a/Dockerfile b/Dockerfile index 1355778..6181598 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,18 @@ -FROM debian:trixie-slim as linux +FROM ubuntu:noble as linux MAINTAINER Eric Coissac "eric@coissac.eu" RUN apt-get update && \ apt-get install -y \ - libnss-ldapd \ openssh-server \ + sssd-ldap \ + ldap-utils \ + ldapscripts \ && apt-get clean +RUN systemctl start sssd.service +RUN pam-auth-update --enable mkhomedir + ENV LANG=fr_FR.UTF-8