From dd2656e9dd5b0345ed674ec23c44cf5d334cac8b Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Sat, 26 Jul 2025 12:26:36 +0100 Subject: [PATCH] Add missing poetry export plugin --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0c68ea4..5e96566 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ -FROM python:3.9 as builder +FROM python:3.9 AS builder COPY . /project WORKDIR /project RUN pip install poetry +RUN poetry self add poetry-plugin-export RUN poetry export --without-hashes -o requirements.txt -f requirements.txt RUN poetry build --format=wheel RUN cp dist/* /tmp