1# The `test-http` image gets built by `pkg/kubeapply` for use by 2# various kubeapply-templated YAML files. 3 4FROM golang:1.20 5COPY httptest.go /usr/local/bin/httptest.go 6RUN go build -o /usr/local/bin/httptest /usr/local/bin/httptest.go 7ENTRYPOINT ["/usr/local/bin/httptest"]