Create Dockerfile
Browse files- Dockerfile +11 -0
Dockerfile
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
RUN apt-get update && apt-get install -y \
|
2 |
+
ffmpeg \
|
3 |
+
libsndfile1 \
|
4 |
+
libgl1-mesa-glx \
|
5 |
+
libglib2.0-0 \
|
6 |
+
libsm6 \
|
7 |
+
libxext6 \
|
8 |
+
libxrender-dev \
|
9 |
+
libgomp1 \
|
10 |
+
wget \
|
11 |
+
git
|