Test_Elec_ChatBot / Dockerfile
adzee17's picture
Update Dockerfile
cdb464a verified
raw
history blame contribute delete
245 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --upgrade pip && pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["streamlit", "run", "streamlit_app.py", "--server.port=7860", "--server.address=0.0.0.0"]