Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Voxxium
/
PROXPY
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
PROXPY
/
Dockerfile
Voxxium
Create Dockerfile
9a19bb3
verified
10 days ago
raw
Copy download link
history
blame
contribute
delete
148 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
RUN
pip install --no-cache-dir fastapi uvicorn requests apscheduler
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]