mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
Since https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/?id=cf8315ded9b422d2e8b620ffe8bb661221639c8f kernel-firmware requires rdfind.
32 lines
953 B
Docker
32 lines
953 B
Docker
FROM debian:sid
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get dist-upgrade -y \
|
|
&& apt-get install -y locales sudo \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen \
|
|
&& locale-gen en_US.UTF-8 \
|
|
&& update-locale LANG=en_US.UTF-8 LANGUAGE=en_US:en
|
|
ENV LANG=en_US.UTF-8 \
|
|
LANGUAGE=en_US:en \
|
|
LC_ALL=en_US.UTF-8
|
|
|
|
RUN adduser --disabled-password --gecos '' docker \
|
|
&& adduser docker sudo \
|
|
&& echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
wget bash bc gcc sed patch patchutils tar bzip2 gzip xz-utils zstd perl gawk gperf zip unzip diffutils lzop make file \
|
|
g++ xfonts-utils xsltproc default-jre-headless python3 \
|
|
libc6-dev libncurses5-dev \
|
|
libjson-perl libxml-parser-perl libparse-yapp-perl rdfind \
|
|
golang-go \
|
|
git openssh-client \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
USER docker
|