Created
November 25, 2017 13:12
-
-
Save golonzovsky/09e5db673e6f000844760b8fc12332ab to your computer and use it in GitHub Desktop.
cerebro
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 openjdk:8u131-jdk-alpine | |
RUN apk --no-cache add openssl wget bash | |
ENV CEREBRO_VERSION 0.7.1 | |
RUN mkdir /opt && cd /opt \ | |
&& wget -O cerebro-${CEREBRO_VERSION}.tgz https://github.com/lmenezes/cerebro/releases/download/v${CEREBRO_VERSION}/cerebro-${CEREBRO_VERSION}.tgz \ | |
&& tar zxvf cerebro-${CEREBRO_VERSION}.tgz \ | |
&& rm cerebro-${CEREBRO_VERSION}.tgz \ | |
&& mkdir cerebro-${CEREBRO_VERSION}/logs \ | |
&& mv cerebro-${CEREBRO_VERSION} cerebro | |
WORKDIR /opt/cerebro | |
EXPOSE 9000 | |
CMD ["./bin/cerebro"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://hub.docker.com/r/golonzovsky/cerebro/