Upgrade Docker images to Python 3.11, closes #1853

This commit is contained in:
Simon Willison 2022-10-25 11:59:03 -07:00
commit 02ae1a0029
6 changed files with 7 additions and 7 deletions

View file

@ -12,7 +12,7 @@ class CaptureDockerfile:
EXPECTED_DOCKERFILE = """
FROM python:3.10.6-slim-bullseye
FROM python:3.11.0-slim-bullseye
COPY . /app
WORKDIR /app

View file

@ -242,7 +242,7 @@ def test_publish_cloudrun_plugin_secrets(
)
expected = textwrap.dedent(
r"""
FROM python:3.10.6-slim-bullseye
FROM python:3.11.0-slim-bullseye
COPY . /app
WORKDIR /app
@ -309,7 +309,7 @@ def test_publish_cloudrun_apt_get_install(
)
expected = textwrap.dedent(
r"""
FROM python:3.10.6-slim-bullseye
FROM python:3.11.0-slim-bullseye
COPY . /app
WORKDIR /app