summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile.run
blob: 19d0fd345c3d06ae56a2cb04950944fbf72115be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
FROM centos:7

# 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

ENV VESPA_HOME=/opt/vespa
ENV PATH="${PATH}:${VESPA_HOME}/bin"