From 0157220ec2f304dc1a55532f94d9e911bc7c2c72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 02:26:33 +0000 Subject: [PATCH] Bump python from 3.10-alpine to 3.10.8-alpine Bumps python from 3.10-alpine to 3.10.8-alpine. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c394c9e..024e37c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.10-alpine AS build +FROM python:3.10.8-alpine AS build RUN apk add --no-cache py3-pip alpine-sdk libffi-dev RUN python3 -m venv /opt/venv ENV PATH="/opt/venv/bin:$PATH" RUN pip install certbot certbot-dns-safedns -FROM python:3.10-alpine +FROM python:3.10.8-alpine COPY --from=build /opt/venv /opt/venv ENV PATH="/opt/venv/bin:$PATH"