-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
56 lines (49 loc) · 1.01 KB
/
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
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
FROM ubuntu:16.04
RUN apt update
RUN apt install -y \
texinfo \
pax \
bzip2 \
make \
gcc \
wget \
pax \
cvs \
git \
yasm \
subversion \
cmake \
xz-utils \
g++ \
flex \
m4 \
bison \
autoconf \
automake \
build-essential \
libass-dev \
libfreetype6-dev \
libsdl1.2-dev \
libtheora-dev \
libtool \
libva-dev \
libvorbis-dev \
pkg-config \
nasm \
unzip \
mercurial \
ed \
curl
RUN apt install -y vim
RUN mkdir compile
#ADD http://zeranoe.com/scripts/mingw_w64_build/mingw-w64-build-3.6.7 /home/compile-user/source/mingw-w64-build-3.6.7
#COPY mingw-w64-build-3.6.7 /compile/mingw-w64-build-3.6.7
#RUN chmod +x /compile/mingw-w64-build-3.6.7
#RUN /compile/mingw-w64-build-3.6.7 --build-type=win64 --cpu-count=4 --default-configure
VOLUME /result
WORKDIR compile
#RUN git clone https://github.com/rdp/ffmpeg-windows-build-helpers
#RUN git clone https://github.com/DeadSix27/ffmpeg-windows-build-helpers
COPY entrypoint.sh /compile
RUN chmod +x /compile/entrypoint.sh
CMD [ "/compile/entrypoint.sh" ]