mirror of
https://github.com/linuxserver/libreelec-builder.git
synced 2026-05-04 00:01:45 +08:00
first commit
This commit is contained in:
commit
e5abd5851b
37
Dockerfile
Normal file
37
Dockerfile
Normal file
@ -0,0 +1,37 @@
|
||||
FROM ubuntu:16.04
|
||||
|
||||
# package list as variable
|
||||
ARG PACKAGE_LIST="\
|
||||
bash \
|
||||
bc \
|
||||
bzip2 \
|
||||
default-jre \
|
||||
diffutils \
|
||||
g++ \
|
||||
gawk \
|
||||
gcc \
|
||||
git \
|
||||
gperf \
|
||||
gzip \
|
||||
libc6-dev \
|
||||
libncurses5-dev \
|
||||
lzop \
|
||||
make \
|
||||
patch \
|
||||
perl \
|
||||
sed \
|
||||
tar \
|
||||
texinfo \
|
||||
u-boot-tools \
|
||||
unzip \
|
||||
wget \
|
||||
xfonts-utils \
|
||||
xsltproc \
|
||||
xz-utils \
|
||||
zip"
|
||||
|
||||
# install packages
|
||||
RUN \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
$PACKAGE_LIST
|
||||
Loading…
x
Reference in New Issue
Block a user