Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
etahamad
/
flask
like
0
Runtime error
App
Files
Files
Community
54bf42b
flask
/
Dockerfile
etahamad
init
54bf42b
over 1 year ago
raw
Copy download link
history
blame
208 Bytes
FROM
python:
3.8
-slim-buster
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]