Update python Docker tag to v3.11.5
This commit is contained in:
parent
7d339bc5e1
commit
304e8e31ff
@ -1,10 +1,10 @@
|
|||||||
FROM python:3.11.4 as build
|
FROM python:3.11.5 as build
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN pip install poetry && poetry build
|
RUN pip install poetry && poetry build
|
||||||
|
|
||||||
FROM python:3.11.4
|
FROM python:3.11.5
|
||||||
|
|
||||||
COPY --from=build /app/dist /tmp/dist
|
COPY --from=build /app/dist /tmp/dist
|
||||||
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
|
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
|
||||||
|
Loading…
Reference in New Issue
Block a user