forked from nguoianphu/docker-filebeat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
44 lines (35 loc) · 1.55 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
# Dockerfile for Filebeat
# Build with:
# docker build -t "filebeat" .
# Alpine OS 3.4
# http://dl-cdn.alpinelinux.org/alpine/v3.4/community/x86_64/
FROM alpine:3.4
MAINTAINER Tuan Vo <[email protected]>
###############################################################################
# INSTALLATION
###############################################################################
ENV FILEBEAT_VERSION=5.0.0
RUN set -x \
&& apk add --update bash \
curl \
tar \
openssl \
&& curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-${FILEBEAT_VERSION}-linux-x86_64.tar.gz \
&& tar xzvf filebeat-${FILEBEAT_VERSION}-linux-x86_64.tar.gz -C / --strip-components=1 \
&& rm -rf filebeat-${FILEBEAT_VERSION}-linux-x86_64.tar.gz \
&& apk --no-cache add ca-certificates \
&& wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/sgerrand/alpine-pkg-glibc/master/sgerrand.rsa.pub \
&& wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/glibc-2.23-r3.apk \
&& apk add glibc-2.23-r3.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 []