Newer
Older
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
coreutils \
build-essential \
libreadline-dev \
&& rm -rf /var/lib/apt/lists/*
USER ${USERNAME}
WORKDIR /home/${USERNAME}
# Setup git
# Set color.ui to avoid google git repo to prompt for it
&& git config --global user.email ${USERNAME}@localhost.localdomain \
&& git config --global color.ui auto