Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -15,6 +15,8 @@ RUN pip install byaldi qwen-vl-utils
|
|
15 |
|
16 |
# Copy your application code
|
17 |
COPY app.py .
|
|
|
|
|
18 |
|
19 |
# Expose the port the app runs on
|
20 |
EXPOSE 8000
|
|
|
15 |
|
16 |
# Copy your application code
|
17 |
COPY app.py .
|
18 |
+
COPY ./requirements.txt /app/requirements.txt
|
19 |
+
RUN RUN pip install --no-cache-dir -r /app/requirements.txt
|
20 |
|
21 |
# Expose the port the app runs on
|
22 |
EXPOSE 8000
|