Add missing poetry export plugin
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -1,9 +1,10 @@
|
|||||||
FROM python:3.9 as builder
|
FROM python:3.9 AS builder
|
||||||
|
|
||||||
COPY . /project
|
COPY . /project
|
||||||
WORKDIR /project
|
WORKDIR /project
|
||||||
|
|
||||||
RUN pip install poetry
|
RUN pip install poetry
|
||||||
|
RUN poetry self add poetry-plugin-export
|
||||||
RUN poetry export --without-hashes -o requirements.txt -f requirements.txt
|
RUN poetry export --without-hashes -o requirements.txt -f requirements.txt
|
||||||
RUN poetry build --format=wheel
|
RUN poetry build --format=wheel
|
||||||
RUN cp dist/* /tmp
|
RUN cp dist/* /tmp
|
||||||
|
Reference in New Issue
Block a user