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"] | |