...

Text file src/github.com/emissary-ingress/emissary/v3/docker/test-http/Dockerfile

Documentation: github.com/emissary-ingress/emissary/v3/docker/test-http

     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"]

View as plain text