Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TourdeVino
/
showcase
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
showcase
/
Dockerfile.dev
rufimelo
yolo
41173b4
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
162 Bytes
FROM
python:
3.10
ENV
DASH_DEBUG_MODE True
COPY
./app /app
WORKDIR
/app
RUN
set
-ex && \
pip install -r requirements.txt
EXPOSE
8050
CMD
[
"python"
,
"app.py"
]