18 lines
680 B
Plaintext
18 lines
680 B
Plaintext
# Update the repo lists and then install things using the internal
|
|
# sources. Packages used by many developers are pulled into this image
|
|
# but we do want it to be relatively small.
|
|
#
|
|
# NOTE: We use DEBIAN_FRONTEND=noninteractive to prevent krb5-user from
|
|
# trying to prompt for configuration details during install.
|
|
#
|
|
# pciutils is needed for lspci used by assets/intel-gpu-info
|
|
RUN apt-get -q update \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends -q \
|
|
locales \
|
|
software-properties-common \
|
|
pciutils
|
|
|
|
# Set up locales
|
|
RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8
|
|
ENV LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8
|