santit96's picture
Update dockerfile to fix streamlit not found errors
ec50ed5
raw
history blame
282 Bytes
FROM --platform=linux/amd64 tensorflow/tensorflow:2.12.0
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"]