refactor(deploy-vercel): streamline deployment to Vercel, remove Docker/local deployment files, and harden path handling

This commit is contained in:
cto-new[bot]
2026-01-23 18:47:39 +00:00
parent affd9b2da9
commit af9be25f20
11 changed files with 192 additions and 198 deletions

View File

@@ -1,11 +0,0 @@
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5001
CMD ["python", "app.py"]