Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Arghet6
/
diplom
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9b6a9d7
diplom
/
Dockerfile
Arghet6
Upload 9 files
9b6a9d7
verified
4 months ago
raw
Copy download link
history
blame
Safe
131 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. .
RUN
pip install -r requirements.txt
CMD
[
"gunicorn"
,
"--bind"
,
"0.0.0.0:8080"
,
"app:app"
]