19 lines
327 B
Docker
19 lines
327 B
Docker
FROM ubuntu:noble as linux
|
|
|
|
MAINTAINER Eric Coissac "eric@coissac.eu"
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
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
|
|
|