Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
anyisalin
/
make-photo
like
4
Runtime error
App
Files
Files
Community
1
b810592
make-photo
/
Dockerfile
anyisalin
init commit
c65fc1f
10 months ago
raw
Copy download link
history
blame
Safe
110 Bytes
FROM
python:
3.11
.
1
COPY
. /app
WORKDIR
/app
RUN
pip install -r requirements.txt
CMD
[
"python"
,
"app.py"
]