Spaces:
Sleeping
Sleeping
copy files to workdir
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -4,8 +4,7 @@ WORKDIR /app
|
|
| 4 |
|
| 5 |
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
|
| 6 |
|
| 7 |
-
COPY
|
| 8 |
-
COPY app.py ./
|
| 9 |
|
| 10 |
RUN pip3 install --no-cache-dir -r requirements.txt
|
| 11 |
|
|
|
|
| 4 |
|
| 5 |
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
|
| 6 |
|
| 7 |
+
COPY . ./
|
|
|
|
| 8 |
|
| 9 |
RUN pip3 install --no-cache-dir -r requirements.txt
|
| 10 |
|