Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update alpine Docker tag to v3.19 #41

Merged
merged 2 commits into from
Apr 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax = docker/dockerfile:1.2

FROM alpine:3.18
FROM alpine:3.19

# Install interpreter languages and tools
RUN --mount=type=cache,target=/etc/apk/cache,id=apk \
Expand Down Expand Up @@ -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
Expand Down