deep-reasoner / Dockerfile
WaysAheadGlobal's picture
Upload 4 files
739adb4 verified
raw
history blame contribute delete
581 Bytes
# Dockerfile for Reasoning AI
FROM python:3.10-slim
# Set environment variables
ENV OPENROUTER_API_KEY=your-openrouter-api-key
ENV PYTHONUNBUFFERED=1
# 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 files
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose Streamlit default port
EXPOSE 8501
# Run the app
CMD ["streamlit", "run", "reasoning_ai_app/app.py", "--server.port=8501", "--server.enableCORS=false"]