Skip to content

Instantly share code, notes, and snippets.

@joshuar
Created November 15, 2017 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshuar/9f75a04c56688075b41019ea93bf0e8c to your computer and use it in GitHub Desktop.
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
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