From a6c149f4778b32a5ec61e767ff80f786caa2ed75 Mon Sep 17 00:00:00 2001 From: fardin-developer Date: Sat, 18 Jan 2025 01:29:47 +0530 Subject: [PATCH] update Dockerfile to use Poetry for direct dependency management --- Dockerfile | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d7879e..39679df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,15 +2,22 @@ FROM python:3.11-slim WORKDIR /app -COPY requirements.txt . +RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* -RUN pip install --no-cache-dir -r requirements.txt +RUN curl -sSL https://install.python-poetry.org | python3 - + +# Ensure Poetry is available in PATH +ENV PATH="/root/.local/bin:$PATH" + +COPY pyproject.toml poetry.lock ./ + +RUN poetry self add "poetry-plugin-export" && \ + poetry export -f requirements.txt --without-hashes -o requirements.txt && \ + pip install --no-cache-dir -r requirements.txt COPY . . -RUN chmod +x /app/agentic_security.py || true - EXPOSE 8718 # Run the initialization command first, then start the application -CMD ["sh", "-c", "python -m agentic_security i && python -m agentic_security s"] \ No newline at end of file +# CMD ["sh", "-c", "python -m agentic_security i && python -m agentic_security s"]