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

Reviewed-on: #147
This commit is contained in:
Michel Roux 2023-08-26 08:25:55 +00:00
commit 4e5cd0334a
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