Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Divyonko
/
LivePulse
like
2
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cdf4792
LivePulse
/
Dockerfile.api
DivYonko
first commit
11a0fc5
about 1 month ago
raw
Copy download link
history
blame
Safe
209 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
8000
CMD
[
"uvicorn"
,
"backend.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]