Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aravindslg
/
Poke-dash
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
45c9e0c
Poke-dash
/
Dockerfile
AravindSL1
Added Dockerfile
45c9e0c
9 months ago
raw
Copy download link
history
blame
162 Bytes
FROM
python:
3.12
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
ENV
PORT
7860
ENTRYPOINT
[
"python"
,
"app.py"
]