This commit is contained in:
Colin 2024-03-18 23:38:30 -04:00
parent b3c61b18a7
commit f5cde84adb
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@ FROM fluent/fluentd:v1.12-debian-1
# Use root for the installation of additional plugins
USER root
apt-get update && apt-get install -y netcat
# Update and install netcat
RUN apt-get update && apt-get install -y netcat
# Install necessary plugins
RUN fluent-gem install fluent-plugin-out-http --no-document && \