Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
OlgaKo
/
Hellper
like
0
Runtime error
App
Files
Files
Community
bfeb399
Hellper
/
Dokerfile
OlgaKo
Upload 15 files
bfeb399
11 months ago
raw
Copy download link
history
blame
Safe
120 Bytes
FROM
python:alpine
WORKDIR
/app
COPY
_ /app
RUN
pip3 install -r requiremens.txt
EXPOSE
5000
CMD
[
"python3"
,
"planer.py"
]