From e519e245183208e40b0b75b96c18a535e424953d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 May 2023 15:44:18 +0900 Subject: [PATCH] Bump python from 3.10.6-alpine to 3.11.2-alpine (#128) Bumps python from 3.10.6-alpine to 3.11.2-alpine. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 991cd20..5628cf7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.6-alpine AS builder +FROM python:3.11.2-alpine AS builder RUN apk add --update --no-cache gcc musl-dev libffi-dev openssl-dev make cargo RUN pip install --no-cache-dir build @@ -8,7 +8,7 @@ RUN \ --mount=type=cache,target=/root/.cache/pip \ pip wheel /tmp/dist/*.whl --wheel-dir /wheel -FROM python:3.10.6-alpine +FROM python:3.11.2-alpine MAINTAINER 'Byeonghoon Isac Yoo '