Files
astebenkova 59de48379b [elasticsearch-s3] Prepare recipes for v7/v8
Create common Dockerfiles for the latest major ES versions

Change-Id: I5b1232e41e6713cdf89b832262ec5a703cfaf81d
2024-06-03 09:03:25 +03:00

13 lines
286 B
Docker

ARG ELASTICSEARCH_VERSION
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTICSEARCH_VERSION}
USER root
RUN set -ex \
&& apt update \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends jq \
&& rm -rf /var/lib/apt/lists/*
USER elasticsearch