You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN go build -ldflags="-s -w -X main.version=$VERSION -X main.commit=$COMMIT" -v -o /usr/local/bin/prog ./cmd/repeater/repeater.go
FROM alpine:3.14
RUN apk add --no-cache ca-certificates
COPY --from=builder /usr/local/bin/prog ./prog
ENTRYPOINT [ "sh", "-c", "update-ca-certificates || echo 'Unable to update certificates. If you want to add certificates to the agent, please make sure to run it as root.'; ./prog" ]