summaryrefslogtreecommitdiffstats
path: root/docker-api/src/test/resources/systest/Dockerfile.template
blob: 2f388cf864a486cce35b4eff4ceccacec281c823 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
FROM $VESPA_BASE_IMAGE

# Don't autostart anything when building image
RUN yinst set root.autostart=off

RUN yinst install -branch test vespa_systemtest_base vespa_systemtest_gems

# Start node_server through bash to avoid zombie processes, see
# https://blog.phusion.nl/2015/01/20/docker-and-the-pid-1-zombie-reaping-problem/
ENTRYPOINT ["/bin/bash", "-c", "set -e && /systemtests/bin/node_server.rb"]