summaryrefslogtreecommitdiffstats
path: root/node-admin/Dockerfile.template
diff options
context:
space:
mode:
authorfreva <valerijf@yahoo-inc.com>2017-01-31 16:07:27 +0100
committerfreva <valerijf@yahoo-inc.com>2017-01-31 16:07:27 +0100
commitc12a478a58d981f7a05c695ef50219870e93b6f2 (patch)
tree1f462b5f81893f35ecc53f58bb5c397af9f7e6d7 /node-admin/Dockerfile.template
parentfe5a0bbcb9376c5bca80b83fe98983d5f49cffa4 (diff)
Node-admin local zone fixes
Diffstat (limited to 'node-admin/Dockerfile.template')
-rw-r--r--node-admin/Dockerfile.template35
1 files changed, 0 insertions, 35 deletions
diff --git a/node-admin/Dockerfile.template b/node-admin/Dockerfile.template
deleted file mode 100644
index e69308deae3..00000000000
--- a/node-admin/Dockerfile.template
+++ /dev/null
@@ -1,35 +0,0 @@
-# NOTE: Whenever the vespa-base version changes, review pom.xml. A fixed version of vespa-base contains components
-# built from a certain vespa revision, while the docker image you will build with this Dockerfile contains components
-# (i.e. the node-admin jar file) built from HEAD. Since dependencies change over time, there may be mismatches.
-# Therefore, one of the following may be necessary for one or more dependencies in pom.xml:
-# a) Hard-coding a version override.
-# b) Changing a hard-coded version override.
-# c) Removing a hard-coded version override.
-#
-# Because of the way docker creates and caches docker image layers, the command should be in order of likelihood
-# of change (Files that are updated most often should be at the bottom).
-#
-# See build.sh for the meaning of $NODE_ADMIN_FROM_IMAGE.
-FROM $NODE_ADMIN_FROM_IMAGE
-
-# Be aware that this Dockerfile is not being used in any pipelines and has no relation to production environments etc.
-# It is here for developers' convenience - it allows building and experimenting with node-admin locally.
-
-CMD $VESPA_HOME/bin/start-services.sh
-
-# Things for convenience.
-RUN yum install -y tcpdump
-ADD include/root-bashrc /root/.bashrc
-
-# Make config-server aware of node flavor 'docker'.
-ADD include/node-flavors.xml $VESPA_HOME/conf/configserver-app/node-flavors.xml
-
-# Make config-server also listen to 4080
-ADD include/http-server.xml $VESPA_HOME/conf/configserver-app/hosted-vespa/http-server.xml
-
-# Entrypoint for running config server in a container.
-ADD include/start-config-server.sh $VESPA_HOME/bin/start-config-server.sh
-
-# Included in base image, but here overridden with local modifications.
-# TODO: Update the source instead.
-ADD include/start-services.sh $VESPA_HOME/bin/start-services.sh