From d41f2e57e45da2b92bd0e018337304f7d36db20d Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Tue, 2 Jan 2024 11:56:05 +0100 Subject: [PATCH] Actualiser Dockerfile --- Dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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