You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
267 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY pyproject.toml .
COPY libs/ libs/
COPY apps/ apps/
COPY configs/ configs/
COPY alembic.ini .
RUN pip install --no-cache-dir -e .
ENV APP_ENV=prod
ENV LOG_LEVEL=INFO
CMD ["python", "-m", "apps.pipeline.filing_poller.main"]