Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ashishraics
/
NLP
like
3
Runtime error
App
Files
Files
Community
65ac75e
NLP
/
Dockerfile
ashishraics
deleted model bin
ec4681c
over 2 years ago
raw
Copy download link
history
blame
Safe
134 Bytes
FROM
python:
3.9
-slim-buster
COPY
. /app
WORKDIR
/app
RUN
pip3 install -r requirements.txt
EXPOSE
8501
CMD
[
"streamlit"
,
"run"
,
"app.py"
]