data-extraction-env / Dockerfile
23f2002275
Remove healthcheck causing restart loop
ed67082
Raw
History Blame Contribute Delete
226 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r server/requirements.txt
ENV PYTHONPATH="/app:$PYTHONPATH"
EXPOSE 7860
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]