Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Hackatos
/
Smart-Shower-ATC
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d7e43f2
Smart-Shower-ATC
/
Dockerfile.dev
rufimelo
intiial commit
b510d23
over 1 year ago
raw
Copy download link
history
blame
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"
]