Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Manishx
/
GenAtoZ
like
0
Sleeping
App
Files
Files
Community
2
08bbc10
GenAtoZ
/
Dockerfile
abhicodes
Update Dockerfile
08bbc10
verified
8 months ago
raw
Copy download link
history
blame
Safe
206 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r requirements.txt
COPY
. /code
CMD
[
"gunicorn"
,
"main:app"
,
"-b"
,
"0.0.0.0:7860"
]