We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a1c0aa commit 1c0fdd9Copy full SHA for 1c0fdd9
Dockerfile
@@ -7,11 +7,11 @@ WORKDIR /src/prometheus-kafka-adapter
7
ADD . /src/prometheus-kafka-adapter
8
9
RUN go test
10
-RUN go build -tags static -o /prometheus-kafka-adapter
+RUN go build -o /prometheus-kafka-adapter
11
12
FROM alpine:3.12
13
14
-RUN apk add --no-cache alpine-sdk 'librdkafka>=1.3.0'
+RUN apk add --no-cache 'librdkafka>=1.3.0'
15
16
COPY --from=build /src/prometheus-kafka-adapter/schemas/metric.avsc /schemas/metric.avsc
17
COPY --from=build /prometheus-kafka-adapter /
0 commit comments