Add missing poetry export plugin
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-07-26 12:26:36 +01:00
parent 12fc3ac359
commit dd2656e9dd
+2 -1
View File
@@ -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