FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml README.md LICENSE ./
COPY querygate ./querygate
COPY configs ./configs
RUN pip install --no-cache-dir -e ".[frontend]"
EXPOSE 7860
