docker
Browse files- Dockerfile +2 -3
- requirements.txt +2 -1
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM
|
2 |
|
3 |
RUN apt-get update && apt-get install -y \
|
4 |
ffmpeg \
|
@@ -27,8 +27,7 @@ RUN apt-get update && apt-get install -y \
|
|
27 |
COPY requirements.txt .
|
28 |
RUN pip install --no-cache-dir -r requirements.txt
|
29 |
|
30 |
-
|
31 |
-
RUN python3 -m pip install broken-source==0.3.3.dev0
|
32 |
|
33 |
|
34 |
COPY . /app
|
|
|
1 |
+
FROM python3.10
|
2 |
|
3 |
RUN apt-get update && apt-get install -y \
|
4 |
ffmpeg \
|
|
|
27 |
COPY requirements.txt .
|
28 |
RUN pip install --no-cache-dir -r requirements.txt
|
29 |
|
30 |
+
|
|
|
31 |
|
32 |
|
33 |
COPY . /app
|
requirements.txt
CHANGED
@@ -3,4 +3,5 @@ Pillow
|
|
3 |
numpy
|
4 |
aiofiles
|
5 |
torch
|
6 |
-
aiohttp
|
|
|
|
3 |
numpy
|
4 |
aiofiles
|
5 |
torch
|
6 |
+
aiohttp
|
7 |
+
broken-source==0.3.3.dev0
|