Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
FROM python:3.11
|
2 |
|
3 |
-
COPY
|
4 |
-
COPY app.py .
|
5 |
-
COPY ./models .
|
6 |
|
7 |
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
8 |
|
|
|
1 |
FROM python:3.11
|
2 |
|
3 |
+
COPY . .
|
|
|
|
|
4 |
|
5 |
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
6 |
|