Spaces:
Running
Running
Anish-530 commited on
Commit ·
ca21c7f
1
Parent(s): 8ec8c65
Fix Windows-specific dependencies for Linux Docker build
Browse files- Dockerfile +1 -1
- README.md +10 -0
- backend/requirements.txt +4 -4
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
|
| 3 |
# Install system dependencies for AI processing
|
| 4 |
-
RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 && rm -rf /var/lib/apt/lists/*
|
| 5 |
|
| 6 |
WORKDIR /app
|
| 7 |
|
|
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
|
| 3 |
# Install system dependencies for AI processing
|
| 4 |
+
RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 libmagic1 && rm -rf /var/lib/apt/lists/*
|
| 5 |
|
| 6 |
WORKDIR /app
|
| 7 |
|
README.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
Architecture diagram
|
| 2 |
API documentation
|
| 3 |
Model description
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Spotix API
|
| 3 |
+
emoji: 🚀
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Spotix API Backend
|
| 11 |
Architecture diagram
|
| 12 |
API documentation
|
| 13 |
Model description
|
backend/requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
alembic==1.18.4
|
| 3 |
amqp==5.3.1
|
| 4 |
annotated-doc==0.0.4
|
|
@@ -121,10 +121,10 @@ python-dateutil==2.9.0.post0
|
|
| 121 |
python-dotenv==1.2.1
|
| 122 |
python-jose==3.5.0
|
| 123 |
python-json-logger==4.0.0
|
| 124 |
-
python-magic
|
| 125 |
python-multipart==0.0.22
|
| 126 |
pytz==2025.2
|
| 127 |
-
|
| 128 |
PyYAML==6.0.3
|
| 129 |
pyzmq==27.1.0
|
| 130 |
redis==6.4.0
|
|
@@ -176,7 +176,7 @@ wcwidth==0.2.14
|
|
| 176 |
webcolors==25.10.0
|
| 177 |
webencodings==0.5.1
|
| 178 |
websocket-client==1.9.0
|
| 179 |
-
|
| 180 |
wrapt==2.1.1
|
| 181 |
|
| 182 |
boto3==1.34.84
|
|
|
|
| 1 |
+
aiosmtplib==5.1.0
|
| 2 |
alembic==1.18.4
|
| 3 |
amqp==5.3.1
|
| 4 |
annotated-doc==0.0.4
|
|
|
|
| 121 |
python-dotenv==1.2.1
|
| 122 |
python-jose==3.5.0
|
| 123 |
python-json-logger==4.0.0
|
| 124 |
+
python-magic==0.4.27
|
| 125 |
python-multipart==0.0.22
|
| 126 |
pytz==2025.2
|
| 127 |
+
|
| 128 |
PyYAML==6.0.3
|
| 129 |
pyzmq==27.1.0
|
| 130 |
redis==6.4.0
|
|
|
|
| 176 |
webcolors==25.10.0
|
| 177 |
webencodings==0.5.1
|
| 178 |
websocket-client==1.9.0
|
| 179 |
+
|
| 180 |
wrapt==2.1.1
|
| 181 |
|
| 182 |
boto3==1.34.84
|