From efeb346d147cbf3e2453daa5037e604a28c50449 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 07:37:56 +0000 Subject: [PATCH] Bump alpine from 3.19.0 to 3.19.1 in /base Bumps alpine from 3.19.0 to 3.19.1. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- base/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/Dockerfile b/base/Dockerfile index ce06b60..f388806 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.19.0 as base-image +FROM alpine:3.19.1 as base-image RUN apk update && apk add python3 python3-dev py3-pip build-base py3-cffi libressl-dev libffi-dev RUN pip install --upgrade pip && pip install wheel @@ -15,7 +15,7 @@ RUN wget https://github.com/in-toto/in-toto/raw/develop/requirements-pinned.txt RUN pip install --user --force-reinstall -r requirements-pinned.txt RUN pip install --user in-toto -FROM alpine:3.19.0 AS built-image +FROM alpine:3.19.1 AS built-image LABEL maintainer="Santiago Torres Arias " RUN apk update && apk add python3