Last active
July 2, 2020 20:29
-
-
Save csrwng/069fe8586e8b50bb9d74c8b658ca9154 to your computer and use it in GitHub Desktop.
elasticsearch-plugin-dockerfiles
This file contains 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 fedora | |
RUN dnf -y update && dnf clean all | |
RUN dnf -y install java java-devel maven git && dnf clean all | |
RUN mkdir /src && cd /src && \ | |
git clone https://github.com/fabric8io/openshift-elasticsearch-plugin | |
RUN cd /src/openshift-elasticsearch-plugin && \ | |
git fetch origin pull/190/head:testbranch && \ | |
git checkout testbranch | |
RUN cd /src/openshift-elasticsearch-plugin && \ | |
mvn clean verify |
This file contains 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 fedora | |
RUN dnf -y update && dnf clean all | |
RUN dnf -y install java java-devel maven git && dnf clean all | |
RUN mkdir /src && cd /src && \ | |
git clone https://github.com/fabric8io/openshift-elasticsearch-plugin | |
RUN cd /src/openshift-elasticsearch-plugin && \ | |
git fetch origin pull/192/head:testbranch && \ | |
git checkout testbranch | |
RUN cd /src/openshift-elasticsearch-plugin && \ | |
mvn clean verify |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment