File size: 562 Bytes
50d0471 373943b 4ce87a7 fc469bd c3843c7 c14b0b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# Use slim Python base image
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential curl git && \
rm -rf /var/lib/apt/lists/*
# Copy dependencies
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Expose Streamlit port
EXPOSE 8501
# Run the Streamlit app
#Option 1
CMD ["streamlit", "run", "streamlit-app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|