We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91d4f7b commit 5ccbb4fCopy full SHA for 5ccbb4f
Dockerfile
@@ -1,8 +1,10 @@
1
FROM python:3.13-slim@sha256:751d8bece269ba9e672b3f2226050e7e6fb3f3da3408b5dcb5d415a054fcb061 AS builder
2
3
+RUN apt-get update && \
4
+ apt-get install --no-install-suggests --no-install-recommends --yes pipx
5
-RUN pip install --no-cache-dir poetry==1.8.4
-
6
+ENV PATH="/root/.local/bin:${PATH}"
7
+RUN pipx install poetry
8
WORKDIR /app
9
10
COPY pyproject.toml poetry.lock ./
0 commit comments