From 0e40a6864b9f64dcc1dc3850ef0bd7ca0d091eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=BCth?= Date: Sat, 28 Apr 2018 21:02:41 +0200 Subject: [PATCH] Fix docker image --- demo/Dockerfile | 5 +++-- server/Dockerfile | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/demo/Dockerfile b/demo/Dockerfile index 04d059421b..1f611d4aaa 100644 --- a/demo/Dockerfile +++ b/demo/Dockerfile @@ -17,8 +17,9 @@ RUN mkdir /plugins && chown mesh: /plugins -R && ln -s /plugins /mesh/plugins ADD https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-$ESVERSION.zip /es.zip WORKDIR / -RUN apk --update --no-cache add unzip \ - && unzip /es.zip && apk del unzip \ +RUN apt-get update && apt-get install -y unzip \ + && unzip /es.zip && apt-get remove -y unzip \ + && apt-get clean \ && mv elasticsearch* elasticsearch \ && rm /es.zip \ && ln -s /elasticsearch /mesh/elasticsearch \ diff --git a/server/Dockerfile b/server/Dockerfile index 6dbe3acf9e..bbfb79cc16 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -17,8 +17,9 @@ RUN mkdir /plugins && chown mesh: /plugins -R && ln -s /plugins /mesh/plugins ADD https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-$ESVERSION.zip /es.zip WORKDIR / -RUN apk --update --no-cache add unzip \ - && unzip /es.zip && apk del unzip \ +RUN apt-get update && apt-get install -y unzip \ + && unzip /es.zip && apt-get remove -y unzip \ + && apt-get clean \ && mv elasticsearch* elasticsearch \ && rm /es.zip \ && ln -s /elasticsearch /mesh/elasticsearch \