Added Maven and Java 8 on top of Official GitLab Runner image
89
#Build: docker build -t aminul1983/gitlab-runner:1.0.0 . FROM gitlab/gitlab-runner:latest MAINTAINER Aminul Haque [email protected]
&& apt-get upgrade -y \
&& apt-get install -y apt-utils \
&& apt-get install -y software-properties-common \
&& add-apt-repository ppa:webupd8team/java -y \
&& apt-get update \
&& echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections \
&& apt-get install -y oracle-java8-installer```
# Install maven and git.
```RUN apt-get install -y maven git
RUN apt-get clean```
Content type
Image
Digest
Size
631.1 MB
Last updated
almost 8 years ago
docker pull aminul1983/gitlab-runner:1.0.0