Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -7
Dockerfile
CHANGED
@@ -11,13 +11,13 @@ ENV DEBIAN_FRONTEND=noninteractive \
|
|
11 |
TRANSFORMERS_CACHE=/app/cache \
|
12 |
HF_HOME=/app/cache
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
COPY
|
21 |
|
22 |
# Install system dependencies
|
23 |
RUN apt-get update && apt-get install -y \
|
|
|
11 |
TRANSFORMERS_CACHE=/app/cache \
|
12 |
HF_HOME=/app/cache
|
13 |
|
14 |
+
Copy requirements file and install Python dependencies
|
15 |
+
COPY requirements.txt requirements.txt
|
16 |
+
COPY extract_img_pdf.py extract_img_pdf.py
|
17 |
+
COPY live_streaming_flask.py live_streaming_flask.py
|
18 |
+
COPY templates/ /app/templates
|
19 |
+
COPY .env .env
|
20 |
+
COPY test_streaming.py test_streaming.py
|
21 |
|
22 |
# Install system dependencies
|
23 |
RUN apt-get update && apt-get install -y \
|