forked from runabol/piper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
24 lines (14 loc) · 858 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM jrottenberg/ffmpeg:4.2-ubuntu
WORKDIR /app
RUN apt-get update
RUN apt-get install -y software-properties-common wget
RUN wget https://mediaarea.net/repo/deb/repo-mediaarea_1.0-12_all.deb && dpkg -i repo-mediaarea_1.0-12_all.deb && apt-get update
RUN apt-get -y install mediainfo wget openjdk-11-jdk
RUN apt-get install -y unzip python
RUN wget "http://zebulon.bok.net/Bento4/binaries/Bento4-SDK-1-5-1-629.x86_64-unknown-linux.zip" && \
unzip Bento4-SDK-1-5-1-629.x86_64-unknown-linux.zip && \
rm Bento4-SDK-1-5-1-629.x86_64-unknown-linux.zip && \
mv Bento4-SDK-1-5-1-629.x86_64-unknown-linux bento4
ENV PATH $PATH:/app/bento4/bin
ENTRYPOINT ["java","-jar","/app/piper.jar"]
COPY target/piper-0.0.1-SNAPSHOT.jar /app/piper.jar