From b6842e4c21cc967aa19fdad5a5cbcfde8f47ca3f Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Wed, 11 Oct 2023 10:00:56 -0700 Subject: [PATCH] chore(ci): Remove unusued Dockerfile I think this is a holdover from when the soak test infrastructure used to be build in Vector CI rather than exposed as a service. Signed-off-by: Jesse Szwedko --- lib/soak/Dockerfile | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 lib/soak/Dockerfile diff --git a/lib/soak/Dockerfile b/lib/soak/Dockerfile deleted file mode 100644 index 36c17a8185bc5..0000000000000 --- a/lib/soak/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -# -# BUILDER -# -FROM docker.io/rust:1.62-buster as builder -WORKDIR /vector -ARG VECTOR_FEATURES -# RUN apt-get -y update && apt-get -y install build-essential cmake libclang-dev libsasl2-dev -COPY . . -RUN cargo build --release --package soak --bin observer --no-default-features - -# -# TARGET -# -FROM gcr.io/distroless/cc-debian11 -COPY --from=builder /vector/target/release/observer /usr/bin/observer - -# Smoke test -RUN ["observer", "--help"] - -ENTRYPOINT ["/usr/bin/observer"]