sample
Browse files- Dockerfile +3 -8
Dockerfile
CHANGED
@@ -30,16 +30,11 @@ COPY requirements.txt .
|
|
30 |
RUN pip install --no-cache-dir -r requirements.txt
|
31 |
|
32 |
|
33 |
-
|
34 |
-
RUN git clone https://github.com/BrokenSource/DepthFlow.git /tmp/DepthFlow \
|
35 |
-
&& cd /tmp/DepthFlow \
|
36 |
-
&& git checkout 3f518988eaba01fc7712228ec56756658bcfdb04 \
|
37 |
-
&& pip install -e .
|
38 |
|
39 |
# Create necessary directories and set permissions
|
40 |
-
RUN mkdir -p /tmp/Video
|
41 |
-
|
42 |
-
&& chmod -R 777 /home/admin/.local /tmp/Video /usr/local/lib/python3.10/site-packages/Workspace
|
43 |
|
44 |
# Create a non-root user and give it sudo privileges
|
45 |
RUN useradd -m appuser \
|
|
|
30 |
RUN pip install --no-cache-dir -r requirements.txt
|
31 |
|
32 |
|
33 |
+
|
|
|
|
|
|
|
|
|
34 |
|
35 |
# Create necessary directories and set permissions
|
36 |
+
RUN mkdir -p /tmp/Video
|
37 |
+
|
|
|
38 |
|
39 |
# Create a non-root user and give it sudo privileges
|
40 |
RUN useradd -m appuser \
|