email-env-openenv / Dockerfile
Mehrin's picture
Fix Phase 2 dependency issue and upgrade to Selection-Grade AI Triage system
12b2673
raw
history blame contribute delete
391 Bytes
FROM python:3.11-slim
WORKDIR /app
# Copy project files
COPY . .
# Install dependencies globally
RUN pip install --no-cache-dir -r requirements.txt
# Expose port for FastAPI
EXPOSE 7860
# CMD launches the API server by default
# We use standard python to ensure compatibility with all entry points
CMD ["python", "-m", "uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]