summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/run/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/run/Dockerfile b/docker/run/Dockerfile
index 4116b12a00d..d4b7e489451 100644
--- a/docker/run/Dockerfile
+++ b/docker/run/Dockerfile
@@ -5,7 +5,8 @@ ARG VESPA_VERSION
# Needed to run vespa
RUN yum-config-manager --add-repo https://copr.fedorainfracloud.org/coprs/g/vespa/vespa/repo/epel-7/group_vespa-vespa-epel-7.repo && \
yum -y install epel-release && \
- yum -y install centos-release-scl
+ yum -y install centos-release-scl && \
+ yum -y install maven
COPY vespa*-${VESPA_VERSION}-*.rpm /tmp/
RUN yum localinstall -y $(ls /tmp/vespa*-${VESPA_VERSION}-*.rpm | xargs)