Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
OlgaKo
/
Hellper
like
0
Runtime error
App
Files
Files
Community
9f6f19c
Hellper
/
Dockerfile
OlgaKo
Update Dockerfile
9f6f19c
11 months ago
raw
Copy download link
history
blame
Safe
177 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt/app/requirements.txt
RUN
pip3 install -r requirements.txt
CMD
[
"python3"
,
"planer.py"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]