GraphInterpreter / Dockerfile
HMZaheer's picture
Update Dockerfile
8e5b3fc verified
raw
history blame contribute delete
797 Bytes
---
### 📌 Dockerfile
```dockerfile
# Use official lightweight Python image
FROM python:3.10-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender-dev \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy requirements first (for caching)
COPY requirements.txt /app/
# Install Python dependencies
RUN pip install --upgrade pip && \
pip install -r requirements.txt && \
pip install --upgrade streamlit
# Copy app files
COPY . /app/
# Expose port
EXPOSE 7860
# Run Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]