chore: upgrade to alpine 3.19 (#1327)

Co-authored-by: Joey Parrish <joeyparrish@google.com>
pull/1339/head
Michał Idzikowski 2024-02-10 18:25:37 +01:00 committed by GitHub
parent 15b27549a8
commit 9193a90f5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.12 as builder
FROM alpine:3.19 as builder
# Install utilities, libraries, and dev tools.
RUN apk add --no-cache \
@ -15,7 +15,7 @@ RUN cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -G Ninja
RUN cmake --build build/ --config Debug --parallel
# Copy only result binaries to our final image.
FROM alpine:3.12
FROM alpine:3.19
RUN apk add --no-cache libstdc++ python3
COPY --from=builder /shaka-packager/build/packager/packager \
/shaka-packager/build/packager/mpd_generator \

View File

@ -1,4 +1,4 @@
FROM alpine:3.12
FROM alpine:3.19
# Install utilities, libraries, and dev tools.
RUN apk add --no-cache \