Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rnair
/
antisomnus
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
72d0f36
antisomnus
/
Dockerfile
rnair
added stuff
8ff5f44
about 2 years 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"
]