5046975869
This PS updates all dockerfiles to allow base image over-rides as required by many consumers of OSH. Change-Id: I53daac9c1ec4707628565abc912116d8997eba16 Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
9 lines
250 B
Docker
9 lines
250 B
Docker
ARG FROM=docker.io/elasticsearch:5.6.4
|
|
FROM ${FROM}
|
|
|
|
RUN wget -O jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 \
|
|
&& chmod +x ./jq \
|
|
&& cp jq /usr/bin
|
|
|
|
RUN bin/elasticsearch-plugin install --batch repository-s3
|