Hugging Face
Models
Datasets
Spaces
Posts
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...
674296e
Poke-dash
/
Dockerfile
AravindSL1
Debug in Dockerfile
674296e
7 months ago
raw
Copy download link
history
blame
Safe
191 Bytes
FROM
python:
3.12
-slim
WORKDIR
/app
COPY
requirements.txt /app/
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. /app
EXPOSE
7860
ENV
PORT
7860
ENTRYPOINT
[
"python"
,
"app.py"
]