Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NBayer
/
docker-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fa06cc1
docker-test
/
Dockerfile
NBayer
Update Dockerfile
9db1b12
almost 2 years ago
raw
Copy download link
history
blame
Safe
155 Bytes
FROM
python:
3.8
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
5000
CMD
[
"flask"
,
"run"
,
"--host=0.0.0.0"
,
"--port=5000"
]