Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
caidaoli/Grok
ftjc2021
/
Grok
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Grok
/
Dockerfile
caidaoli
Update Dockerfile
986bbb4
verified
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
190 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"
]