File tree 4 files changed +21
-0
lines changed
4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ RUN ARCH=$(if [ "$TARGETPLATFORM" = "linux/arm/v6" ]; then echo "arm"; else cat
13
13
RUN mkdir -p /var/lib/vector
14
14
15
15
FROM docker.io/alpine:3.21
16
+
17
+ # https://github.com/opencontainers/image-spec/blob/main/annotations.md
18
+ LABEL org.opencontainers.image.url="https://vector.dev"
19
+ LABEL org.opencontainers.image.source="https://github.com/vectordotdev/vector"
20
+ LABEL org.opencontainers.image.documentation="https://vector.dev/docs"
21
+
16
22
# we want the latest versions of these
17
23
# hadolint ignore=DL3018
18
24
RUN apk --no-cache add ca-certificates tzdata
Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ RUN mkdir -p /var/lib/vector
9
9
10
10
FROM docker.io/debian:bookworm-slim
11
11
12
+ # https://github.com/opencontainers/image-spec/blob/main/annotations.md
13
+ LABEL org.opencontainers.image.url="https://vector.dev"
14
+ LABEL org.opencontainers.image.source="https://github.com/vectordotdev/vector"
15
+ LABEL org.opencontainers.image.documentation="https://vector.dev/docs"
16
+
12
17
# we want the latest versions of these
13
18
# hadolint ignore=DL3008
14
19
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata systemd && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ RUN mkdir -p /var/lib/vector
11
11
# hadolint ignore=DL3007
12
12
FROM gcr.io/distroless/cc-debian12:latest
13
13
14
+ # https://github.com/opencontainers/image-spec/blob/main/annotations.md
15
+ LABEL org.opencontainers.image.url="https://vector.dev"
16
+ LABEL org.opencontainers.image.source="https://github.com/vectordotdev/vector"
17
+ LABEL org.opencontainers.image.documentation="https://vector.dev/docs"
18
+
14
19
COPY --from=builder /usr/bin/vector /usr/bin/vector
15
20
COPY --from=builder /usr/share/doc/vector /usr/share/doc/vector
16
21
COPY --from=builder /usr/share/vector /usr/share/vector
Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ RUN mkdir -p /var/lib/vector
11
11
# hadolint ignore=DL3007
12
12
FROM gcr.io/distroless/static:latest
13
13
14
+ # https://github.com/opencontainers/image-spec/blob/main/annotations.md
15
+ LABEL org.opencontainers.image.url="https://vector.dev"
16
+ LABEL org.opencontainers.image.source="https://github.com/vectordotdev/vector"
17
+ LABEL org.opencontainers.image.documentation="https://vector.dev/docs"
18
+
14
19
COPY --from=builder /vector/bin/* /usr/local/bin/
15
20
COPY --from=builder /vector/config/vector.yaml /etc/vector/vector.yaml
16
21
COPY --from=builder /var/lib/vector /var/lib/vector
You can’t perform that action at this time.
0 commit comments