Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Araeynn
/
lyreai
like
0
Build error
App
Files
Files
Community
main
lyreai
/
Dockerfile
Araeynn
Update Dockerfile
29ddc43
verified
9 months 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"
]