1 FROM debian:jessie-backports
3 MAINTAINER LEAP Encryption Access Project <info@leap.se>
4 LABEL Description="Bare debian jessie baseimage with few customisation" Vendor="LEAP" Version="1.x"
6 RUN sed -i 's/httpredir/deb/' /etc/apt/sources.list
8 && apt-get install -y --no-install-recommends \
13 && rm -rf /var/lib/apt/lists/*
15 RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
18 RUN useradd -ms /bin/bash -G sudo cirunner
20 # allow all members of sudo group to execute any command without password
21 RUN sed -i 's/^%sudo.*/%sudo ALL=(ALL) NOPASSWD:ALL/' /etc/sudoers