Merge pull request 'Update python Docker tag to v3.11.5' (#147) from renovate/python-3.x into master
All checks were successful
divent / lint (push) Successful in 2m8s
divent / docker (push) Successful in 55s
divent / pypi (push) Has been skipped

Reviewed-on: #147
This commit is contained in:
Michel Roux 2023-08-26 08:25:55 +00:00
commit 4e5cd0334a

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