Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
i0110
/
aicdn
like
0
Paused
App
Files
Files
xet
Community
Fetching metadata from the HF Docker repository...
main
aicdn
/
Dockerfile
i0110
Update Dockerfile
576f616
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
193 Bytes
FROM
python:3.9-slim-buster
WORKDIR /app
RUN
apt-
get
update && apt-
get
install -y git
RUN
pip install --no-cache-dir Flask requests gitpython
COPY . .
EXPOSE 5000
CMD [
"python"
,
"app.py"
]