From f0dd2cdb0daecc9caca9f49b324fb726b7e41b28 Mon Sep 17 00:00:00 2001 From: William Lee Date: Sun, 12 May 2024 22:30:18 -0400 Subject: [PATCH] Pull new vector setup (#158) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f30c5e5..ae84f82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM python:slim-bookworm RUN apt-get update && apt-get install -y curl -RUN curl -1sLf 'https://repositories.timber.io/public/vector/cfg/setup/bash.deb.sh' | bash -RUN apt-get update && apt-get -y upgrade && apt-get install -y vector +RUN bash -c "$(curl -1sLf 'https://setup.vector.dev')" +RUN apt-get update && apt-get -y upgrade && apt-get install -y vector && apt-get clean && rm -rf /var/lib/apt/lists/* RUN mkdir -p /zeus WORKDIR /zeus