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:
joselobenitezg
/
obtu-ai
like
8
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
obtu-ai
/
Dockerfile
Jose Benitez
fix docker
6e72ff5
almost 2 years ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
198 Bytes
FROM
python:
3.10
.
9
COPY
. .
WORKDIR
/
# Install requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]