Merge pull request 'chore(deps): update python docker tag to v3.12.4' (#211) from renovate/python-3.x into master
All checks were successful
divent / lint (push) Successful in 1m44s
divent / docker (push) Successful in 2m33s
divent / pypi (push) Has been skipped

Reviewed-on: #211
This commit is contained in:
Michel Roux 2024-06-09 18:40:21 +00:00
commit 182de6c8cc
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ on: [push]
jobs:
lint:
runs-on: ubuntu-latest
container: python:3.12.3
container: python:3.12.4
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
@ -43,7 +43,7 @@ jobs:
pypi:
runs-on: ubuntu-latest
container: python:3.12.3
container: python:3.12.4
needs: [lint]
if: gitea.ref_type == 'tag'
env:

View File

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