зеркало из https://github.com/Azure/ARO-RP.git
10 строки
374 B
Docker
10 строки
374 B
Docker
FROM registry.access.redhat.com/rhel7:latest
|
|
ARG VERSION
|
|
RUN \
|
|
echo -e '[td-agent-bit]\nbaseurl=https://packages.fluentbit.io/centos/7' >/etc/yum.repos.d/td-agent-bit.repo && \
|
|
rpm --import https://packages.fluentbit.io/fluentbit.key && \
|
|
yum -y update && \
|
|
yum -y install td-agent-bit-$VERSION && \
|
|
yum clean all
|
|
ENTRYPOINT ["/opt/td-agent-bit/bin/td-agent-bit"]
|