-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kentaro Hayashi <[email protected]>
- Loading branch information
Showing
12 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
FROM alpine:3.19 | ||
LABEL maintainer "Fluentd developers <[email protected]>" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.5" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.6" | ||
|
||
# Do not split this into multiple RUN! | ||
# Docker creates a layer for every RUN-Statement | ||
|
@@ -22,7 +22,7 @@ RUN apk update \ | |
&& gem install rexml -v 3.2.6 \ | ||
&& gem install async -v 1.31.0 \ | ||
&& gem install async-http -v 0.60.2 \ | ||
&& gem install fluentd -v 1.16.5 \ | ||
&& gem install fluentd -v 1.16.6 \ | ||
&& gem install bigdecimal -v 1.4.4 \ | ||
&& apk del .build-deps \ | ||
&& rm -rf /var/cache/apk/* \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ RUN curl -sL -o qemu-6.0.0.balena1-aarch64.tar.gz https://github.com/balena-io/q | |
FROM --platform=linux/arm64 arm64v8/ruby:3.2-slim-bookworm | ||
COPY --from=builder /go/qemu-aarch64-static /usr/bin/ | ||
LABEL maintainer "Fluentd developers <[email protected]>" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.5" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.6" | ||
ARG CROSS_BUILD_START="cross-build-start" | ||
ARG CROSS_BUILD_END="cross-build-end" | ||
RUN [ ${CROSS_BUILD_START} ] | ||
|
@@ -34,7 +34,7 @@ RUN apt-get update \ | |
&& gem install rexml -v 3.2.6 \ | ||
&& gem install async -v 1.31.0 \ | ||
&& gem install async-http -v 0.60.2 \ | ||
&& gem install fluentd -v 1.16.5 \ | ||
&& gem install fluentd -v 1.16.6 \ | ||
&& dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')" \ | ||
&& wget -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini-$dpkgArch" \ | ||
&& wget -O /usr/local/bin/tini.asc "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini-$dpkgArch.asc" \ | ||
|
@@ -45,7 +45,7 @@ RUN apt-get update \ | |
&& chmod +x /usr/local/bin/tini \ | ||
&& tini -h \ | ||
&& wget -O /tmp/jemalloc-5.3.0.tar.bz2 https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2 \ | ||
&& cd /tmp && tar -xjf jemalloc-5.3.0.tar.bz2 && cd jemalloc-5.3.0/ \ | ||
&& cd /tmp && tar -xjf jemalloc-5.3.0.tar.bz2 --no-same-owner && cd jemalloc-5.3.0/ \ | ||
# Don't use MADV_FREE to reduce memory usage and improve stability | ||
# https://github.com/fluent/fluentd-docker-image/pull/350 | ||
&& (echo "je_cv_madv_free=no" > config.cache) && ./configure -C && make \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ RUN curl -sL -o qemu-3.0.0+resin-arm.tar.gz https://github.com/balena-io/qemu/re | |
FROM --platform=linux/arm/v7 arm32v7/ruby:3.2-slim-bookworm | ||
COPY --from=builder /go/qemu-arm-static /usr/bin/ | ||
LABEL maintainer "Fluentd developers <[email protected]>" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.5" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.6" | ||
ARG CROSS_BUILD_START="cross-build-start" | ||
ARG CROSS_BUILD_END="cross-build-end" | ||
RUN [ ${CROSS_BUILD_START} ] | ||
|
@@ -34,7 +34,7 @@ RUN apt-get update \ | |
&& gem install rexml -v 3.2.6 \ | ||
&& gem install async -v 1.31.0 \ | ||
&& gem install async-http -v 0.60.2 \ | ||
&& gem install fluentd -v 1.16.5 \ | ||
&& gem install fluentd -v 1.16.6 \ | ||
&& dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')" \ | ||
&& wget -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini-$dpkgArch" \ | ||
&& wget -O /usr/local/bin/tini.asc "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini-$dpkgArch.asc" \ | ||
|
@@ -45,7 +45,7 @@ RUN apt-get update \ | |
&& chmod +x /usr/local/bin/tini \ | ||
&& tini -h \ | ||
&& wget -O /tmp/jemalloc-5.3.0.tar.bz2 https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2 \ | ||
&& cd /tmp && tar -xjf jemalloc-5.3.0.tar.bz2 && cd jemalloc-5.3.0/ \ | ||
&& cd /tmp && tar -xjf jemalloc-5.3.0.tar.bz2 --no-same-owner && cd jemalloc-5.3.0/ \ | ||
# Don't use MADV_FREE to reduce memory usage and improve stability | ||
# https://github.com/fluent/fluentd-docker-image/pull/350 | ||
&& (echo "je_cv_madv_free=no" > config.cache) && ./configure -C && make \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
FROM ruby:3.2-slim-bookworm | ||
LABEL maintainer "Fluentd developers <[email protected]>" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.5" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.6" | ||
ENV TINI_VERSION=0.18.0 | ||
|
||
# Do not split this into multiple RUN! | ||
|
@@ -23,7 +23,7 @@ RUN apt-get update \ | |
&& gem install rexml -v 3.2.6 \ | ||
&& gem install async -v 1.31.0 \ | ||
&& gem install async-http -v 0.60.2 \ | ||
&& gem install fluentd -v 1.16.5 \ | ||
&& gem install fluentd -v 1.16.6 \ | ||
&& dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')" \ | ||
&& wget -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini-$dpkgArch" \ | ||
&& wget -O /usr/local/bin/tini.asc "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini-$dpkgArch.asc" \ | ||
|
@@ -34,7 +34,7 @@ RUN apt-get update \ | |
&& chmod +x /usr/local/bin/tini \ | ||
&& tini -h \ | ||
&& wget -O /tmp/jemalloc-5.3.0.tar.bz2 https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2 \ | ||
&& cd /tmp && tar -xjf jemalloc-5.3.0.tar.bz2 && cd jemalloc-5.3.0/ \ | ||
&& cd /tmp && tar -xjf jemalloc-5.3.0.tar.bz2 --no-same-owner && cd jemalloc-5.3.0/ \ | ||
# Don't use MADV_FREE to reduce memory usage and improve stability | ||
# https://github.com/fluent/fluentd-docker-image/pull/350 | ||
&& (echo "je_cv_madv_free=no" > config.cache) && ./configure -C && make \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
FROM mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019 | ||
LABEL maintainer "Fluentd developers <[email protected]>" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.5" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.6" | ||
|
||
# Do not split this into multiple RUN! | ||
# Docker creates a layer for every RUN-Statement | ||
|
@@ -18,7 +18,7 @@ RUN refreshenv \ | |
&& gem install oj -v 3.16.1 \ | ||
&& gem install json -v 2.6.3 \ | ||
&& gem install rexml -v 3.2.6 \ | ||
&& gem install fluentd -v 1.16.5 \ | ||
&& gem install fluentd -v 1.16.6 \ | ||
&& gem install win32-service -v 2.3.2 \ | ||
&& gem install win32-ipc -v 0.7.0 \ | ||
&& gem install win32-event -v 0.6.3 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
FROM mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2022 | ||
LABEL maintainer "Fluentd developers <[email protected]>" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.5" | ||
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.16.6" | ||
|
||
# Do not split this into multiple RUN! | ||
# Docker creates a layer for every RUN-Statement | ||
|
@@ -18,7 +18,7 @@ RUN refreshenv \ | |
&& gem install oj -v 3.16.1 \ | ||
&& gem install json -v 2.6.3 \ | ||
&& gem install rexml -v 3.2.6 \ | ||
&& gem install fluentd -v 1.16.5 \ | ||
&& gem install fluentd -v 1.16.6 \ | ||
&& gem install win32-service -v 2.3.2 \ | ||
&& gem install win32-ipc -v 0.7.0 \ | ||
&& gem install win32-event -v 0.6.3 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters