Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rauhan
/
vibbaai
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
024d9ba
vibbaai
/
Dockerfile
Rauhan
Update Dockerfile
024d9ba
verified
29 days ago
raw
Copy download link
history
blame
Safe
159 Bytes
FROM
python:
3.10
-slim
COPY
. /app
WORKDIR
/app
USER
root
RUN
pip install -r requirements.txt
RUN
chmod
-R 777 /app
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]