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