chore: update docker tag
divent / lint (push) Waiting to run Details
divent / docker (push) Blocked by required conditions Details
divent / pypi (push) Blocked by required conditions Details

This commit is contained in:
Michel Roux 2024-01-24 12:37:32 +01:00
parent bedc1ed2e4
commit e38bfc7472
1 changed files with 2 additions and 2 deletions

View File

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