Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rr1
/
optfr
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
optfr
/
Dockerfile
rr1
Create Dockerfile
86fcddc
verified
9 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
195 Bytes
FROM
python:
3.11
-slim
RUN
apt-get update && apt-get install -y git
RUN
git
clone
https://github.com/renqabs/oprt.git /app
WORKDIR
/app
RUN
pip install flask requests
CMD
[
"python"
,
"app.py"
]