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