1
0
intel-media-ffmpeg/templates/ubuntu/10-default-packages.in
James Ketrenos 8a9be3721e Modified intel-gpu-info to not require lspci
Signed-off-by: James Ketrenos <james.p.ketrenos@intel.com>
2019-11-11 10:54:31 -08:00

15 lines
602 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.
RUN apt-get -q update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends -q \
locales \
software-properties-common
# 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