From 84c3f20871d4f1273d914bc9f5cb938cc546214a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Aug 2022 07:26:17 +0000 Subject: [PATCH] Bump python from 3.8.12-slim-buster to 3.10.6-slim-buster Bumps python from 3.8.12-slim-buster to 3.10.6-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..9e759848221 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.6-slim-buster@sha256:0173061038a9079b182f6d9b51431b17f1d0bc3f00755fa239b69762e45e512c 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.6-slim-buster@sha256:0173061038a9079b182f6d9b51431b17f1d0bc3f00755fa239b69762e45e512c WORKDIR /app ARG uid=1001 ARG appuser=defectdojo diff --git a/Dockerfile.integration-tests b/Dockerfile.integration-tests index e8434bcff1b..6ccecd2879c 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.6-slim-buster@sha256:0173061038a9079b182f6d9b51431b17f1d0bc3f00755fa239b69762e45e512c as build WORKDIR /app RUN \ apt-get -y update && \ diff --git a/Dockerfile.nginx b/Dockerfile.nginx index 807bb158010..fec205c7ff5 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.6-slim-buster@sha256:0173061038a9079b182f6d9b51431b17f1d0bc3f00755fa239b69762e45e512c as build WORKDIR /app RUN \ apt-get -y update && \