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

build: bump alpine image to 3.17 #5969

Merged
merged 8 commits into from Feb 13, 2023
Merged
5 changes: 3 additions & 2 deletions Dockerfile
Expand Up @@ -6,7 +6,8 @@ RUN apk add --no-cache \
bash \
curl \
gcc \
g++
g++ \
binutils-gold

# Install jq for pd-ctl
RUN cd / && \
Expand All @@ -26,7 +27,7 @@ COPY . .

RUN make

FROM alpine:3.5
FROM alpine:3.17

COPY --from=builder /go/src/github.com/tikv/pd/bin/pd-server /pd-server
COPY --from=builder /go/src/github.com/tikv/pd/bin/pd-ctl /pd-ctl
Expand Down