bump elk stack to 6.5.1

fix docker hub build
This commit is contained in:
t3chn0m4g3
2018-11-22 23:18:59 +00:00
parent b1ee78b1bc
commit 5e8345695f
4 changed files with 39 additions and 29 deletions

View File

@ -1,11 +1,11 @@
FROM alpine
# Setup env and apt
RUN apk -U --no-cache add \
curl \
git \
nodejs \
nodejs-npm && \
RUN apk -U add \
curl \
git \
nodejs \
nodejs-npm && \
# Get and install packages
mkdir -p /usr/src/app/ && \
@ -20,7 +20,10 @@ RUN apk -U --no-cache add \
chown -R head:head /usr/src/app/ && \
# Clean up
apk del --purge git
apk del --purge git && \
rm -rf /root/* && \
rm -rf /tmp/* && \
rm -rf /var/cache/apk/*
# Healthcheck
HEALTHCHECK --retries=10 CMD curl -s -XGET 'http://127.0.0.1:9100'