Spaces:
Running
Running
Upload 2 files
Browse files- Dockerfile +20 -0
- requirements.txt +16 -0
Dockerfile
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.10.9
|
2 |
+
|
3 |
+
WORKDIR /code
|
4 |
+
|
5 |
+
ENV TRANSFORMERS_CACHE=/tmp/cache/huggingface
|
6 |
+
ENV HF_HOME=/tmp/huggingface-cache
|
7 |
+
|
8 |
+
COPY ./requirements.txt /code/requirements.txt
|
9 |
+
|
10 |
+
RUN mkdir -p /tmp/cache/huggingface && chmod -R 777 /tmp/cache/huggingface
|
11 |
+
RUN mkdir -p /tmp/huggingface-cache && chmod -R 777 /tmp/huggingface-cache
|
12 |
+
|
13 |
+
RUN python3 -m pip install -U -I --no-deps --no-cache-dir https://github.com/mikf/gallery-dl/archive/master.tar.gz
|
14 |
+
RUN python3 -m pip install -U --no-cache-dir yt-dlp
|
15 |
+
RUN apt-get update && apt-get install -y ffmpeg
|
16 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
17 |
+
|
18 |
+
COPY . .
|
19 |
+
|
20 |
+
CMD ["uvicorn", "API:app", "--host", "0.0.0.0", "--port", "7860"]
|
requirements.txt
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pillow
|
2 |
+
eyed3
|
3 |
+
aiohttp
|
4 |
+
fpdf
|
5 |
+
uvicorn
|
6 |
+
pillow
|
7 |
+
huggingface_hub
|
8 |
+
requests==2.32.3
|
9 |
+
fastapi==0.111.0
|
10 |
+
kaleido==0.2.1
|
11 |
+
python-multipart==0.0.9
|
12 |
+
websockets==12.0
|
13 |
+
PyPDF2==3.0.1
|
14 |
+
Pillow==10.4.0
|
15 |
+
beautifulsoup4==4.12.3
|
16 |
+
filetype==1.2.0
|