From 88bca06bf98591cb89488cc907941bbb9bd7a480 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Apr 2024 13:55:46 +0900 Subject: [PATCH] Update alpine Docker tag to v3.19 (#41) * Update alpine Docker tag to v3.19 * Workaround PEP668 error --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Atsushi Watanabe --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a9933f6..17d4ad3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax = docker/dockerfile:1 -FROM alpine:3.18 +FROM alpine:3.19 # Install interpreter languages and tools RUN --mount=type=cache,target=/etc/apk/cache,id=apk \ @@ -49,7 +49,7 @@ COPY requirements.txt / RUN --mount=type=cache,target=/etc/apk/cache,id=apk \ apk add --no-cache --virtual .builddeps \ py3-pip \ - && python3 -m pip install -r requirements.txt \ + && python3 -m pip install --break-system-packages -r requirements.txt \ && python3 -m pip show grpcio_tools \ | sed -n 's/^Version: \(.*\)$/python grpcio_tools \1/p' >> /versions \ && apk del .builddeps