JBMCP / Dockerfile
Diamanta's picture
Create Dockerfile
03a514f verified
raw
history blame contribute delete
487 Bytes
# Use slim Python image
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Copy app code
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port Streamlit uses
EXPOSE 7860
# Launch Streamlit app
CMD ["streamlit", "run", "streamlit_app.py", "--server.port=7860", "--server.address=0.0.0.0"]