summaryrefslogtreecommitdiffstats
path: root/Dockerfile.alpine
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2018-02-22 00:52:50 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2018-02-22 00:52:50 +0200
commit53461ffdb6d5e8f5aca3cba9a0a66e667b9f2e17 (patch)
treecd721d168a3661f6fd8098cf190a782eb92c1494 /Dockerfile.alpine
parent27e272c3722af6cfedd1cbb21a8ef8b38c501a32 (diff)
add sleep 1 to alpine docker; #3431
Diffstat (limited to 'Dockerfile.alpine')
-rw-r--r--Dockerfile.alpine2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.alpine b/Dockerfile.alpine
index e6bddf28ed..3fe5ac0ea9 100644
--- a/Dockerfile.alpine
+++ b/Dockerfile.alpine
@@ -12,7 +12,7 @@ WORKDIR /opt/netdata.git
# Install source
RUN chmod +x ./netdata-installer.sh && \
- sync && \
+ sync && sleep 1 && \
./netdata-installer.sh --dont-wait --dont-start-it
################################################################################