distribution/Dockerfile

28 lines
758 B
Text
Raw Normal View History

2023-09-20 10:08:26 +00:00
FROM ubuntu:jammy
2022-02-05 14:23:32 +00:00
2023-09-20 10:08:26 +00:00
ARG DEBIAN_FRONTEND=noninteractive
2022-02-05 14:23:32 +00:00
2023-09-20 10:08:26 +00:00
RUN apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y locales sudo
RUN 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 install -y \
bc default-jre file gawk gcc git golang-go gperf libjson-perl libncurses5-dev \
libparse-yapp-perl libxml-parser-perl lzop make patchutils python-is-python3 \
python3 parted unzip wget curl xfonts-utils xsltproc zip zstd
2022-02-05 14:23:32 +00:00
RUN mkdir -p /work && chown docker /work
WORKDIR /work
USER docker