Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yxmiler/GrokPythonService
ltxlong
/
gk2a
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
gk2a
/
Dockerfile
yxmiler
Update Dockerfile
2a0a433
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
178 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
RUN
pip install --no-cache-dir flask requests curl_cffi werkzeug loguru dotenv
COPY
. .
ENV
PORT=
5200
EXPOSE
5200
CMD
[
"python"
,
"app.py"
]