Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Araeynn
/
lyreai
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
lyreai
/
Dockerfile
Araeynn
Update Dockerfile
29ddc43
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
182 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --upgrade -r --no-cache-dir /code/requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]