Spaces:
Running
Running
Oviya
commited on
Commit
·
8c8fc9f
1
Parent(s):
8dec77d
add listen
Browse files- Dockerfile +4 -2
- requirements.txt +2 -1
Dockerfile
CHANGED
|
@@ -1,12 +1,14 @@
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
ENV DEBIAN_FRONTEND=noninteractive
|
| 3 |
|
| 4 |
-
# System deps + Microsoft key via keyring (
|
| 5 |
RUN set -eux; \
|
| 6 |
apt-get update; \
|
| 7 |
apt-get install -y --no-install-recommends \
|
| 8 |
curl ca-certificates gnupg2 apt-transport-https \
|
| 9 |
-
unixodbc unixodbc-dev
|
|
|
|
|
|
|
| 10 |
mkdir -p /etc/apt/keyrings; \
|
| 11 |
curl -fsSL https://packages.microsoft.com/keys/microsoft.asc \
|
| 12 |
| gpg --dearmor -o /etc/apt/keyrings/microsoft.gpg; \
|
|
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
ENV DEBIAN_FRONTEND=noninteractive
|
| 3 |
|
| 4 |
+
# System deps + Microsoft key via keyring (for msodbcsql17)
|
| 5 |
RUN set -eux; \
|
| 6 |
apt-get update; \
|
| 7 |
apt-get install -y --no-install-recommends \
|
| 8 |
curl ca-certificates gnupg2 apt-transport-https \
|
| 9 |
+
unixodbc unixodbc-dev \
|
| 10 |
+
ffmpeg \
|
| 11 |
+
; \
|
| 12 |
mkdir -p /etc/apt/keyrings; \
|
| 13 |
curl -fsSL https://packages.microsoft.com/keys/microsoft.asc \
|
| 14 |
| gpg --dearmor -o /etc/apt/keyrings/microsoft.gpg; \
|
requirements.txt
CHANGED
|
@@ -6,12 +6,13 @@ PyJWT
|
|
| 6 |
gunicorn
|
| 7 |
python-dotenv
|
| 8 |
requests
|
| 9 |
-
moviepy
|
| 10 |
pydub
|
| 11 |
google-cloud-speech
|
| 12 |
google-cloud-texttospeech
|
| 13 |
openai==1.65.3
|
| 14 |
boto3==1.35.13
|
|
|
|
| 15 |
|
| 16 |
|
| 17 |
|
|
|
|
| 6 |
gunicorn
|
| 7 |
python-dotenv
|
| 8 |
requests
|
| 9 |
+
moviepy==1.0.3
|
| 10 |
pydub
|
| 11 |
google-cloud-speech
|
| 12 |
google-cloud-texttospeech
|
| 13 |
openai==1.65.3
|
| 14 |
boto3==1.35.13
|
| 15 |
+
imageio-ffmpeg
|
| 16 |
|
| 17 |
|
| 18 |
|