Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
eaedk
/
Tuto_Sentiment_Analysis_App
like
1
Sleeping
App
Files
Files
Community
5a025fe
Tuto_Sentiment_Analysis_App
/
Dockerfile
eaedk
dockerfile done
38bebb3
over 1 year ago
raw
Copy download link
history
blame
Safe
156 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt ./
RUN
pip install -r requirements.txt
COPY
app.py ./
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]