Sign inSign up

aminul1983/gitlab-runner

By aminul1983

Updated almost 8 years ago

Added Maven and Java 8 on top of Official GitLab Runner image

Image
0

89

aminul1983/gitlab-runner repository overview

Dockerizing GitLab CE

Version: 1.0

Updates include:

- From Official GitLab Runner image

- Add

- Oracle 8 JDK

- Maven

- Git

#Build: docker build -t aminul1983/gitlab-runner:1.0.0 . FROM gitlab/gitlab-runner:latest MAINTAINER Aminul Haque [email protected]

Install Java

	&& 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```

Tag summary

Content type

Image

Digest

Size

631.1 MB

Last updated

almost 8 years ago

docker pull aminul1983/gitlab-runner:1.0.0