santit96's picture
Update dockerfile to load from python image and updated dependencies
0ba753c
raw
history blame contribute delete
265 Bytes
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"]