Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
joselobenitezg
/
obtu-ai
like
8
Running
App
Files
Files
Community
025cc15
obtu-ai
/
Dockerfile
Jose Benitez
wip
bbc89f6
3 months ago
raw
Copy download link
history
blame
Safe
160 Bytes
FROM
python:
3.8
-slim
WORKDIR
/usr/src/app
COPY
. .
RUN
pip install --no-cache-dir gradio
EXPOSE
7860
ENV
GRADIO_SERVER_NAME=
"0.0.0.0"
CMD
[
"python"
,
"app.py"
]