Spaces:
Running
Running
Kaelan
commited on
Commit
·
6232900
1
Parent(s):
360f619
removes
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -16,6 +16,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 16 |
git \
|
| 17 |
&& pip install --upgrade pip \
|
| 18 |
&& apt clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
| 19 |
# Set up a new user named "user" with user ID 1000
|
| 20 |
RUN useradd -m -u 1000 user
|
| 21 |
|
|
@@ -35,7 +37,6 @@ COPY --chown=user . $HOME/yolov-app
|
|
| 35 |
#RUN cp /yolov-app/public/uploads/skate.mp4 /yolov-app/build/static/skate.mp4
|
| 36 |
#RUN cp /yolov-app/public/uploads/slip.mp4 /yolov-app/build/static/slip.mp4
|
| 37 |
|
| 38 |
-
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
| 39 |
|
| 40 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 41 |
|
|
|
|
| 16 |
git \
|
| 17 |
&& pip install --upgrade pip \
|
| 18 |
&& apt clean && rm -rf /var/lib/apt/lists/*
|
| 19 |
+
|
| 20 |
+
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
| 21 |
# Set up a new user named "user" with user ID 1000
|
| 22 |
RUN useradd -m -u 1000 user
|
| 23 |
|
|
|
|
| 37 |
#RUN cp /yolov-app/public/uploads/skate.mp4 /yolov-app/build/static/skate.mp4
|
| 38 |
#RUN cp /yolov-app/public/uploads/slip.mp4 /yolov-app/build/static/slip.mp4
|
| 39 |
|
|
|
|
| 40 |
|
| 41 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 42 |
|