-
Notifications
You must be signed in to change notification settings - Fork 11
/
Dockerfile
47 lines (39 loc) · 1.62 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Dockerfile for Filebeat
# Build with:
# docker build -t "filebeat" .
# Alpine OS
FROM alpine:latest
# MAINTAINER Tuan Vo <vohungtuan@gmail.com>
###############################################################################
# INSTALLATION
###############################################################################
ENV FILEBEAT_VERSION=8.8.2
RUN if [ `uname -m` = "aarch64" ] ; then \
arch="arm64"; \
else \
arch="x86_64"; \
fi \
&& set -x \
&& apk add --update bash \
curl \
tar \
openssl \
&& curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-${FILEBEAT_VERSION}-linux-${arch}.tar.gz \
&& tar xzvf filebeat-${FILEBEAT_VERSION}-linux-${arch}.tar.gz -C / --strip-components=1 \
&& rm -rf filebeat-${FILEBEAT_VERSION}-linux-${arch}.tar.gz \
&& apk --no-cache add ca-certificates \
&& wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub \
&& wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r1/glibc-2.35-r1.apk \
&& apk add glibc-2.35-r1.apk \
&& apk del curl \
tar \
openssl \
&& rm -rf /var/cache/apk/*
###############################################################################
# START
###############################################################################
COPY docker-entrypoint.sh /
RUN chmod +x docker-entrypoint.sh filebeat \
&& ln -s /filebeat /bin/filebeat
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD []