Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bullm
/
PortalLVAM
like
0
Configuration error
App
Files
Files
Community
28fe2e3
PortalLVAM
/
Dockerfile
bullm
new test
d690a2c
over 2 years ago
raw
Copy download link
history
blame
Safe
194 Bytes
from
python:
3.8
.
0
expose
8501
cmd
mkdir
-p /app
WORKDIR
/app
copy
requirements.txt ./requirements.txt
run
pip3 install -r requirements.txt
copy
. .
ENTRYPOINT
[
"streamlit"
,
"run"
]
CMD
[
"app.py"
]