Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
OpenRussianAI
/
OpenAirAI
like
2
Running
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
refs/pr/3
OpenAirAI
/
Dockerfile
RootLinux21
Update Dockerfile
43c0ae6
verified
24 days ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
202 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"streamlit"
,
"run"
,
"app.py"
,
"--server.port=7890"
,
"--server.address=0.0.0.0"
]