Skip to content

Commit 9f8b6b1

Browse files
committedMay 1, 2020
upstream-opm-builder.Dockerfile: add bash and ca-certificates to runtime index image
1 parent 5c21e0f commit 9f8b6b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎upstream-opm-builder.Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ RUN GRPC_HEALTH_PROBE_VERSION=v0.2.1 && \
1313
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-$(go env GOARCH) && \
1414
chmod +x /bin/grpc_health_probe
1515

16-
FROM scratch
16+
FROM alpine
17+
RUN apk update && apk add bash ca-certificates
1718
COPY --from=builder /build/bin/opm /bin/opm
1819
COPY --from=builder /bin/grpc_health_probe /bin/grpc_health_probe

0 commit comments

Comments
 (0)
Please sign in to comment.