Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dragg2
/
Gk2
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
23be89c
Gk2
/
Dockerfile
yxmiler
Update Dockerfile
8c2c8b3
verified
4 months ago
raw
Copy download link
history
blame
Safe
205 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir flask[async] flask_cors curl_cffi dotenv waitress
COPY
. .
ENV
PORT=
5200
EXPOSE
5200
CMD
[
"python"
,
"app.py"
]