Mbonea commited on
Commit
5757151
·
1 Parent(s): b3b77fd
Files changed (2) hide show
  1. Dockerfile +2 -3
  2. requirements.txt +2 -1
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM tiangolo/uvicorn-gunicorn-fastapi:python3.10
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
- # Install a release version of `broken-source` wheel
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