Update docker/fluentd/Dockerfile

This commit is contained in:
colin 2024-04-16 16:22:55 +00:00
parent dee58b1ce5
commit 25d4f6d8af
1 changed files with 3 additions and 7 deletions

View File

@ -8,14 +8,10 @@ ENV SENTRY_LOG_LEVEL=debug
# Switch to root to install dependencies
USER root
COPY go-glitch /usr/local/bin/
# Update and install dependencies
RUN apt-get update && apt-get install -y netcat curl python3-pip
# Install GlitchTip CLI using pip
RUN pip3 install glitchtip-cli
# Install Sentry CLI using the official installation script
RUN curl -sL https://sentry.io/get-cli/ | bash
RUN apt-get update && apt-get install -y netcat curl
# Install fluentd plugins
RUN fluent-gem install fluent-plugin-out-http --no-document && \