Skip to content
Snippets Groups Projects
Commit d953f97d authored by Daniel Speicher's avatar Daniel Speicher
Browse files

Update Dockerfile with Maven version and install Git.

parent 680a7201
No related branches found
No related tags found
No related merge requests found
Pipeline #5447 passed
......@@ -3,7 +3,7 @@ before_script:
build-master:
script:
- docker build --pull -t $CI_REGISTRY_IMAGE/maven ./docker
- docker build --pull -t $CI_REGISTRY_IMAGE/maven .
- docker push $CI_REGISTRY_IMAGE/maven
only:
- master
FROM ubuntu:16.04
FROM maven:3-jdk-11-slim
LABEL com.example.vendor="PARAGON Executive Service GmbH" \
maintainer="juergen@paragon-es.de" \
version="1.0.0" \
description="Base Ansible image to be built upon by https://gitlab.lakedrops.com/ansible-playbooks/general"
RUN echo "===> Adding Ansible's prerequisites..."
RUN echo "===> Adding GIT..." && \
apt-get update -y && \
apt-get install -y -q git && \
echo "Completed"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment