Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Hasshi7965
/
Test
like
0
Sleeping
App
Files
Files
Fetching metadata from the HF Docker repository...
06c9ded
Test
/
Dockerfile
hashimotoa961
fix for flask
06c9ded
over 1 year ago
raw
Copy download link
history
blame
Safe
180 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
[
"python"
,
"app.py"
]