I hereby claim:
- I am iad42 on github.
- I am iad (https://keybase.io/iad) on keybase.
- I have a public key ASCPgvblNGwO-cPLsxhveQrNfb5vOPu9ZxRTXV6Kj31rGgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| from http.server import BaseHTTPRequestHandler | |
| class handler(BaseHTTPRequestHandler): | |
| def do_GET(self): | |
| print(self.path) | |
| self.send_response(200) | |
| self.send_header('Content-type', 'text/plain') | |
| self.end_headers() | |
| self.wfile.write(self.path.encode()) |
| FROM alpine:3.8 | |
| #################################################### | |
| ######## GCC and tools ########### | |
| #################################################### | |
| # The GNU Compiler Collection 5.3.0-r0 | |
| RUN set -x \ | |
| && apk add --no-cache \ |