task-parser / Dockerfile
Artem Nikolaev
PDF Task Parser with FastAPI and Google integration
ca8ebf7
Raw
History Blame Contribute Delete
240 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p temp_uploads output
EXPOSE 7860
CMD ["uvicorn", "backend:app", "--host", "0.0.0.0", "--port", "7860"]