Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
yusyel
/
fishv2
like
0
Runtime error
App
Files
Files
Community
main
fishv2
/
Dockerfile
yusyel
type
2666040
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
192 Bytes
FROM
python:
3.9
-slim-bullseye
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip3 install -r requirements.txt
COPY
app.py .
COPY
img /app/img
CMD
[
"python3"
,
"-m"
,
"app.py"
]