Trae Assistant
Initial commit: Enriched Docker Compose Architect with network support, demo data, and improved UI
86c1104
raw
history blame contribute delete
250 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Expose the port (optional documentation)
EXPOSE 7860
# Run the application
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]