mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-26 18:10:23 +00:00
tools/docker: add kinetic container
This commit is contained in:
parent
03cd4101ad
commit
4580feb6da
30
tools/docker/kinetic/Dockerfile
Normal file
30
tools/docker/kinetic/Dockerfile
Normal file
@ -0,0 +1,30 @@
|
||||
FROM ubuntu:kinetic
|
||||
|
||||
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 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 \
|
||||
golang-go \
|
||||
git openssh-client \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
USER docker
|
Loading…
Reference in New Issue
Block a user