forked from lakka-switch/Lakka-LibreELEC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
56 lines (50 loc) · 708 Bytes
/
Copy pathDockerfile
File metadata and controls
56 lines (50 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#
# Lakka Dockerfile
#
# Allows building Lakka through Docker.
#
# Usage:
#
# docker build -t lakka .
# docker run -it -v $(pwd):/root lakka
#
FROM ubuntu:xenial
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
build-essential \
bash \
bc \
build-essential \
bzip2 \
diffutils \
g++ \
gawk \
gcc \
git-core \
gperf \
gzip \
libjson-perl \
libncurses5-dev \
lzop \
make \
patch \
patchutils \
perl \
sed \
tar \
texinfo \
unzip \
wget \
xfonts-utils \
xfonts-utils \
xfonts-utils \
xsltproc \
xz-utils \
zip \
&& rm -rf /var/lib/apt/lists/*
ENV HOME /root
ENV DISTRO Lakka
VOLUME /root
WORKDIR /root
CMD make image