Update python Docker tag to v3.11.5
divent / lint (push) Successful in 2m31s Details
divent / docker (push) Successful in 2m1s Details
divent / pypi (push) Has been skipped Details

This commit is contained in:
Renovate Bot 2023-08-26 06:39:47 +00:00
parent 7d339bc5e1
commit 304e8e31ff
1 changed files with 2 additions and 2 deletions

View File

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