From 94795fb4724616bae027a05e558799fc75c0a63f Mon Sep 17 00:00:00 2001 From: Suchintan Date: Tue, 7 Jan 2025 08:18:12 -0500 Subject: [PATCH] Fix Dockerfile (#1509) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1364616b..8572f2cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM python:3.11 as requirements-stage WORKDIR /tmp RUN pip install poetry +RUN poetry self add poetry-plugin-export COPY ./pyproject.toml /tmp/pyproject.toml COPY ./poetry.lock /tmp/poetry.lock RUN poetry export -f requirements.txt --output requirements.txt --without-hashes