Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
RouletteLabs
/
FreeChat
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
FreeChat
/
Dockerfile
1tbfree
Create Dockerfile
e482f03
verified
22 days ago
raw
Copy download link
history
blame
contribute
delete
148 Bytes
FROM
python:
3.11
COPY
. .
RUN
chmod
+777 ./
RUN
pip install flask requests
RUN
echo
python3 api.py > start.sh
RUN
chmod
+x start.sh
CMD
"./start.sh"