Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rnair
/
antisomnus
like
0
Sleeping
App
Files
Files
Community
8ff5f44
antisomnus
/
Dockerfile
rnair
added stuff
8ff5f44
over 1 year ago
raw
Copy download link
history
blame
184 Bytes
from
python:3.10.11-slim-bullseye
WORKDIR /app
COPY requirements.txt .
RUN
apt-
get
update && apt-
get
upgrade
-y
RUN
pip install -r requirements.txt
RUN
cd app
CMD [
"gradio"
,
"app.py"
]