From ab036c31e15c8c2bfeee5b4b541a3983a65c1c9b Mon Sep 17 00:00:00 2001 From: josep-tecnativa Date: Mon, 20 Jan 2025 13:01:43 +0100 Subject: [PATCH] [FIX] Install export module --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 150fc48c..690d4b9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM python:3.13.1-slim AS builder WORKDIR /app ADD pyproject.toml poetry.lock ./ -RUN pip install --no-cache-dir poetry +RUN pip install --no-cache-dir poetry \ + && poetry self add poetry-plugin-export # Build a requirements.txt file matching poetry.lock, that pip understands # Test comment