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