Update python Docker tag to v3.11

This commit is contained in:
Renovate 2022-10-25 12:02:05 +01:00
parent a276f9afcb
commit b3c902de04
2 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ static:
expire_in: 2 hours expire_in: 2 hours
poetry: poetry:
image: python:3.10-slim image: python:3.11-slim
stage: build stage: build
variables: variables:
PIP_CACHE_DIR: $CI_PROJECT_DIR/.pip-cache PIP_CACHE_DIR: $CI_PROJECT_DIR/.pip-cache
@ -48,7 +48,7 @@ poetry:
expire_in: 2 hours expire_in: 2 hours
.python_test_template: .python_test_template:
image: python:3.10-slim image: python:3.11-slim
stage: test stage: test
dependencies: dependencies:
- poetry - poetry

View file

@ -9,7 +9,7 @@ COPY ./static/src ./static/src
RUN npm run build RUN npm run build
# The actual container # The actual container
FROM python:3.10-slim as production FROM python:3.11-slim as production
ENV VIRTUAL_ENV=/venv ENV VIRTUAL_ENV=/venv