Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion images/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ COPY --from=builder /rootfs /
# ldap-utils provides ldapsearch, used by the git-identity profile script to
# fetch a user's email from the internal LDAP server on first interactive login.
RUN apt-get update && \
apt-get install -y sssd sudo tmux curl gnupg git jq ldap-utils unattended-upgrades && \
apt-get install -y sssd sudo tmux curl gnupg git jq ldap-utils unattended-upgrades locales && \
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && \
locale-gen && \
update-locale LANG=en_US.UTF-8 && \
pam-auth-update --enable mkhomedir && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
Expand Down
Loading