Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Niansuh
/
a2o
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
a2o
/
Dockerfile
dongsiqie
Update Dockerfile
9be98bd
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
152 Bytes
FROM
python:
3.11
WORKDIR
/app
COPY
. /app
RUN
pip install --upgrade pip
RUN
pip install -r requirements.txt
EXPOSE
8000
CMD
[
"python3"
,
"-u"
,
"app.py"
]