Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hashir672
/
Python-red-gen-space
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0df0182
Python-red-gen-space
/
Dockerfile
hashir672
Create Dockerfile
0df0182
over 2 years 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 /code/requirements.txt
COPY
. .
CMD
[
"gunicorn"
,
"-b"
,
"0.0.0.0:7860"
,
"main:app"
]