Files
bastionssh/Dockerfile

19 lines
327 B
Docker
Raw Normal View History

2024-01-02 11:56:05 +01:00
FROM ubuntu:noble as linux
2024-01-01 21:17:17 +01:00
MAINTAINER Eric Coissac "eric@coissac.eu"
RUN apt-get update && \
apt-get install -y \
openssh-server \
2024-01-02 11:56:05 +01:00
sssd-ldap \
ldap-utils \
ldapscripts \
2024-01-01 21:17:17 +01:00
&& apt-get clean
2024-01-02 11:56:05 +01:00
RUN systemctl start sssd.service
RUN pam-auth-update --enable mkhomedir
2024-01-01 21:17:17 +01:00
ENV LANG=fr_FR.UTF-8