qatool / Dockerfile
naotakigawa's picture
dockerfile add cmd
7b753ae
raw
history blame
170 Bytes
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip3 install --upgrade pip && \
pip3 install --no-cache-dir -r requirements.txt
EXPOSE 8501
CMD streamlit run Chatbot.py