Created
June 13, 2019 10:33
-
-
Save douglas-vaz/1cf6bf3e1515f94f86b31d89184f3bee to your computer and use it in GitHub Desktop.
Dockerfile for douglasvaz/giter8:0.12.0-M1
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:8-alpine | |
RUN apk --update add curl bash | |
RUN export CONSCRIPT_HOME=/root/.conscript | |
RUN curl https://raw.githubusercontent.com/n8han/conscript/master/setup.sh -o setup.sh && chmod +x setup.sh | |
ENV PATH="/root/.conscript/bin:${PATH}" | |
RUN ./setup.sh; true | |
RUN cs n8han/giter8; true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment