Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -7,7 +7,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 7 |
dnsutils \
|
| 8 |
curl \
|
| 9 |
ffmpeg \
|
| 10 |
-
|
|
|
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
# Working directory
|
|
@@ -17,7 +18,7 @@ WORKDIR /app
|
|
| 17 |
COPY app.py .
|
| 18 |
|
| 19 |
# Install Python dependencies
|
| 20 |
-
RUN pip install --no-cache-dir fastapi uvicorn httpx
|
| 21 |
|
| 22 |
# HuggingFace Spaces port
|
| 23 |
EXPOSE 7860
|
|
|
|
| 7 |
dnsutils \
|
| 8 |
curl \
|
| 9 |
ffmpeg \
|
| 10 |
+
libffi-dev \
|
| 11 |
+
libnacl-dev \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
|
| 14 |
# Working directory
|
|
|
|
| 18 |
COPY app.py .
|
| 19 |
|
| 20 |
# Install Python dependencies
|
| 21 |
+
RUN pip install --no-cache-dir fastapi uvicorn httpx pytgcalls
|
| 22 |
|
| 23 |
# HuggingFace Spaces port
|
| 24 |
EXPOSE 7860
|