Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rr1
/
gtpv4
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
gtpv4
/
Dockerfile
rr1
Create Dockerfile
2da91ea
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
194 Bytes
FROM
python:
3.11
RUN
apt update
RUN
apt install git
RUN
git
clone
https://github.com/renqabs/gtpv4.git /app
WORKDIR
app
RUN
pip install -r requirements.txt
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]