Trae Assistant
Initial commit
76ee95f
raw
history blame contribute delete
253 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Create data directory and set permissions
RUN mkdir -p data && chmod 777 data
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]