Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
makinuh
/
Bandito
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c2ac26b
Bandito
/
Dockerfile
makinuh
Create Dockerfile
30f9959
verified
4 months ago
raw
Copy download link
history
blame
Safe
197 Bytes
FROM
python:
3.9
-slim-buster
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"server:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]