Conversation-Analyser / Dockerfile
Kokush1bo's picture
Create Dockerfile
e8a403c verified
raw
history blame contribute delete
180 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]