Merge pull request 'Update python Docker tag to v3.11.4' (#132) from renovate/python-3.x into master
continuous-integration/drone/push Build is passing Details

Reviewed-on: #132
This commit is contained in:
Michel Roux 2023-06-08 07:26:11 +00:00
commit 75d40ad920
1 changed files with 2 additions and 2 deletions

View File

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