Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
RouletteLabs
/
FreeChat
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5591223
FreeChat
/
Dockerfile
1tbfree
Create Dockerfile
e482f03
verified
about 2 months ago
raw
Copy download link
history
blame
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"