Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

[Snyk] Security upgrade alpine from 3.7 to 3.15 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 tools/protoc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Based on: https://github.com/znly/docker-protobuf/blob/master/Dockerfile
# Modified to slim down the image and adjust for Istio

FROM alpine:3.7 as protoc_builder
FROM alpine:3.15 as protoc_builder
RUN apk add --no-cache build-base curl automake autoconf libtool git zlib-dev

ENV GRPC_VERSION=1.8.3 \
Expand Down Expand Up @@ -44,7 +44,7 @@ RUN upx --lzma \
/out/usr/bin/grpc_* \
/out/usr/bin/protoc-gen-*

FROM alpine:3.7
FROM alpine:3.15
RUN apk add --update --no-cache libstdc++ make bash git openssh
COPY --from=packer /out/ /

Expand Down