Update python Docker tag to v3.11.2
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2023-02-10 00:17:15 +00:00
parent 01d5c4e307
commit 1efb07c7cc
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
FROM python:3.11.1 as build
FROM python:3.11.2 as build
WORKDIR /app
COPY . .
RUN pip install poetry && poetry build
FROM python:3.11.1
FROM python:3.11.2
COPY --from=build /app/dist /tmp/dist
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist