From 3236516fc0c4aff5b34ccd16ae5a4decb78c2e50 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jun 2022 07:12:19 +0000 Subject: [PATCH] Bump python from 3.8.12-slim-buster to 3.10.5-slim-buster Bumps python from 3.8.12-slim-buster to 3.10.5-slim-buster. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile.django | 4 ++-- Dockerfile.integration-tests | 2 +- Dockerfile.nginx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.django b/Dockerfile.django index 315fc0e3fc6..181099a343e 100644 --- a/Dockerfile.django +++ b/Dockerfile.django @@ -5,7 +5,7 @@ # Dockerfile.nginx to use the caching mechanism of Docker. # Ref: https://devguide.python.org/#branchstatus -FROM python:3.8.12-slim-buster@sha256:7e732593f25983fa7d4b2d54444be4a785f2397c1cf2f815d2e3638337eee012 as build +FROM python:3.10.5-slim-buster@sha256:807f16dc51eb1ce7ed1178d82ebb60a41ad67fe74840a0bf6bf502368d4bdd47 as build WORKDIR /app RUN \ apt-get -y update && \ @@ -25,7 +25,7 @@ RUN \ COPY requirements.txt ./ RUN pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt -FROM python:3.8.12-slim-buster@sha256:7e732593f25983fa7d4b2d54444be4a785f2397c1cf2f815d2e3638337eee012 +FROM python:3.10.5-slim-buster@sha256:807f16dc51eb1ce7ed1178d82ebb60a41ad67fe74840a0bf6bf502368d4bdd47 WORKDIR /app ARG uid=1001 ARG appuser=defectdojo diff --git a/Dockerfile.integration-tests b/Dockerfile.integration-tests index e8434bcff1b..2c9ff6c20e5 100644 --- a/Dockerfile.integration-tests +++ b/Dockerfile.integration-tests @@ -1,7 +1,7 @@ # code: language=Dockerfile -FROM python:3.8.12-slim-buster@sha256:7e732593f25983fa7d4b2d54444be4a785f2397c1cf2f815d2e3638337eee012 as build +FROM python:3.10.5-slim-buster@sha256:807f16dc51eb1ce7ed1178d82ebb60a41ad67fe74840a0bf6bf502368d4bdd47 as build WORKDIR /app RUN \ apt-get -y update && \ diff --git a/Dockerfile.nginx b/Dockerfile.nginx index 807bb158010..e2ff954d726 100644 --- a/Dockerfile.nginx +++ b/Dockerfile.nginx @@ -3,7 +3,7 @@ # The code for the build image should be identical with the code in # Dockerfile.django to use the caching mechanism of Docker. -FROM python:3.8.12-slim-buster@sha256:7e732593f25983fa7d4b2d54444be4a785f2397c1cf2f815d2e3638337eee012 as build +FROM python:3.10.5-slim-buster@sha256:807f16dc51eb1ce7ed1178d82ebb60a41ad67fe74840a0bf6bf502368d4bdd47 as build WORKDIR /app RUN \ apt-get -y update && \