This commit is contained in:
Claude Agent
2026-03-04 09:45:18 +00:00
parent 8a7956252c
commit 1fdac3fb57
6 changed files with 70 additions and 3 deletions

View File

@@ -11,6 +11,8 @@ COPY backend/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY backend/ .
COPY --from=frontend-builder /app/frontend/dist /app/dist
RUN chmod +x entrypoint.sh
RUN mkdir -p uploads
EXPOSE 8000
ENTRYPOINT ["./entrypoint.sh"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]