diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8ec58d7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM debian:latest + +MAINTAINER Eric Coissac "eric@coissac.eu" + +RUN apt-get update && \ + apt-get install -y \ + libnss-ldapd \ + openssh-server \ + && apt-get clean + + +ENV LANG=fr_FR.UTF-8 +RUN sed -i -e "s/# $LANG.*/$LANG UTF-8/" /etc/locale.gen && \ + dpkg-reconfigure --frontend=noninteractive locales && \ + update-locale LANG=$LANG +