Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
black44
/
kinyarwanda-engine
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a3f3f79
kinyarwanda-engine
/
Dockerfile
black44
Update Dockerfile
a3f3f79
verified
5 months ago
raw
Copy download link
history
blame
Safe
190 Bytes
FROM
python:
3.9
-slim
WORKDIR
/
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]