Skip to content
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 upstream-opm-builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## GoReleaser to build and push multi-arch images for opm
##

FROM golang:1.16-alpine AS builder
FROM quay.io/operator-framework/golang:1.16-alpine AS builder

RUN apk update && apk add sqlite build-base git mercurial bash
WORKDIR /build
Expand All @@ -14,7 +14,7 @@ RUN GRPC_HEALTH_PROBE_VERSION=v0.3.2 && \
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) && \
chmod +x /bin/grpc_health_probe

FROM alpine
FROM quay.io/operator-framework/alpine
RUN apk update && apk add ca-certificates
COPY ["nsswitch.conf", "/etc/nsswitch.conf"]
COPY --from=builder /build/bin/opm /bin/opm
Expand Down