Spaces:
Sleeping
Sleeping
Commit
·
bb892cb
1
Parent(s):
aa622c0
added the dockerfile
Browse files- dockerfile +11 -0
dockerfile
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
RUN apt-get update && apt-get install -y \
|
2 |
+
git \
|
3 |
+
git-lfs \
|
4 |
+
ffmpeg \
|
5 |
+
libsm6 \
|
6 |
+
libxext6 \
|
7 |
+
cmake \
|
8 |
+
rsync \
|
9 |
+
libgl1-mesa-dev \
|
10 |
+
&& rm -rf /var/lib/apt/lists/* \
|
11 |
+
&& git lfs install
|