Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
smf2010
/
forest
like
0
Sleeping
App
Files
Files
Community
1
af7871e
forest
/
Dockerfile
smf2010
Update Dockerfile
d64481d
verified
10 months ago
raw
Copy download link
history
blame
Safe
180 Bytes
FROM
python:
3.11
WORKDIR
/
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"python"
,
"main.py"
]