dcorcoran's picture
Initial Commit
e7de063
raw
history blame contribute delete
275 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy all frontend code
COPY . .
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]