File size: 265 Bytes
0ba753c
98cd6e7
 
 
ec50ed5
98cd6e7
ec50ed5
98cd6e7
ec50ed5
98cd6e7
 
 
ec50ed5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM --platform=linux/amd64 python:3.10

WORKDIR /bert_sentiment_classifier

COPY ./requirements.txt ./

RUN pip install -r requirements.txt

COPY . .

EXPOSE 8501

CMD ["streamlit", "run", "sentiment_analysis.py", "--server.port=8501", "--server.address=0.0.0.0"]