#!/usr/bin/python import sys import textwrap import http.server import socketserver PORT = 8000 class Handler(http.server.SimpleHTTPRequestHandler): def do_GET(self): self.send_response(200) self.send_header('Content-Type', 'text/html') self.end_headers() self.wfile.write(textwrap.dedent('''\
This container got built and started as part of the integ test.