blob: 089dc33b3047fcaccaa33da6466fe78a0c88e4cf [file]
FROM python:3.10-slim-bullseye
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8081
CMD streamlit run --server.port 8081 --server.enableCORS false app.py