Created
November 15, 2017 22:16
-
-
Save joshuar/9f75a04c56688075b41019ea93bf0e8c to your computer and use it in GitHub Desktop.
Dockerfile for installing JDK development tooling (jmap, etc.) on top of the official Elastic Elasticsearch Docker image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM docker.elastic.co/elasticsearch/elasticsearch:5.6.4 | |
USER root | |
RUN sed -i '/^exclude/d' /etc/yum.conf && yum update -y && yum install -y java-1.8.0-openjdk-devel | |
USER elasticsearch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment