From c39239b8bd6ad95c3d8bbe4a79c3443906bf2ad5 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sat, 2 May 2020 01:57:40 +0000 Subject: [PATCH] Bump python from 3.7-slim to 3.8.2-slim in /sample_python_project Bumps python from 3.7-slim to 3.8.2-slim. Signed-off-by: dependabot-preview[bot] --- sample_python_project/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample_python_project/Dockerfile b/sample_python_project/Dockerfile index 4bf886b..6d1f021 100644 --- a/sample_python_project/Dockerfile +++ b/sample_python_project/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7-slim as requirements +FROM python:3.8.2-slim as requirements COPY requirements.txt /app/requirements.txt @@ -23,7 +23,7 @@ RUN mkdir /reports RUN pytest --junit-xml=/reports/unit.xml -FROM python:3.7-slim as production +FROM python:3.8.2-slim as production RUN useradd --create-home appuser