Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
AumPandya
/
my-app
like
0
spaCy
English
License:
openrail
Model card
Files
Files and versions
Community
Use this model
main
my-app
/
Dockerfile
AumPandya
Upload Dockerfile
031ab7f
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
149 Bytes
FROM
python:
3.8
RUN
pip install streamlit spacy
COPY
. /app
WORKDIR
/app
EXPOSE
8501
CMD
[
"streamlit"
,
"run"
,
"--server.port"
,
"8501"
,
"app.py"
]