-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (25 loc) · 978 Bytes
/
Dockerfile
File metadata and controls
28 lines (25 loc) · 978 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
from jketterl/codecserver:0.2.0
RUN apt-get update && \
apt-get --yes install --no-install-recommends git-core build-essential ca-certificates debhelper cmake libprotobuf-dev protobuf-compiler && \
git clone https://github.com/szechyjs/mbelib.git && \
cd mbelib && \
mkdir build && \
cd build && \
cmake -DCMAKE_INSTALL_PREFIX=/usr .. && \
make && \
make install && \
cd .. && \
git clone https://github.com/fventuri/codecserver-mbelib-module.git && \
cd codecserver-mbelib-module && \
mkdir build && \
cd build && \
cmake -DCMAKE_INSTALL_PREFIX=/usr .. && \
make && \
make install && \
cd .. && \
apt-get -y purge --autoremove git-core build-essential ca-certificates debhelper cmake libprotobuf-dev protobuf-compiler && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /mbelib && \
rm -rf /codecserver-mbelib-module
COPY codecserver.conf /etc/codecserver/codecserver.conf