Files
flowsint/flowsint-core/Dockerfile
2025-09-16 13:50:31 +02:00

13 lines
289 B
Docker

FROM python:3.12-slim
# Installer Poetry
RUN pip install --no-cache-dir poetry
WORKDIR /app
COPY ./pyproject.toml ./poetry.lock* /app/
RUN poetry install --no-root --no-interaction --no-ansi
COPY ./ /app
CMD ["poetry", "run", "celery", "-A", "app.worker", "worker", "--loglevel=info"]