linkerd2/proxy-init/integration_test/iptables/Dockerfile-tester

8 lines
249 B
Plaintext

FROM golang:1.9.1
ADD iptables/ /go
# Kubernetes Jobs will be retried until they return status 0,
# so we need to output the status for processing but make sure
# that the container exits with 0
ENTRYPOINT cd /go && (go test -v ; echo "status:$?")