Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
usbtoo
/
xcbb
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
xcbb
/
Dockerfile
usbtoo
Upload Dockerfile
a4a51cf
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
191 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
RUN
pip install --no-cache-dir flask requests curl_cffi werkzeug loguru
VOLUME
[
"/data"
]
COPY
. .
ENV
PORT=
3000
EXPOSE
3000
CMD
[
"python"
,
"app.py"
]