summaryrefslogtreecommitdiffstats
path: root/docker/ci/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/ci/Dockerfile')
-rw-r--r--docker/ci/Dockerfile15
1 files changed, 0 insertions, 15 deletions
diff --git a/docker/ci/Dockerfile b/docker/ci/Dockerfile
deleted file mode 100644
index fc2e3ffe666..00000000000
--- a/docker/ci/Dockerfile
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-FROM vespabuild
-
-COPY tmp/vespa.spec /vespa.spec
-RUN yum-builddep -y /vespa.spec
-
-# Build using non-root user 'vespabuilder'
-RUN useradd --create-home -s /bin/bash vespabuilder
-WORKDIR /home/vespabuilder
-USER vespabuilder
-
-# Java requires proper locale for unicode
-ENV LANG en_US.UTF-8
-
-COPY ci/vespa-ci-internal.sh /vespa-ci-internal.sh