This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################### | |
# Use: | |
# - docker build --progress plain --tag docker.io/testing/devcontainer:nvim -f Dockerfile . | |
# - docker run --rm -d --name devcontainer --hostname devcontainer docker.io/testing/devcontainer:nvim | |
############################################################################### | |
# Base Devcontainer Image | |
FROM mcr.microsoft.com/devcontainers/base:ubuntu | |
LABEL tag="slim" | |
ENV DEVCONTAINER="slim" | |
SHELL ["/bin/bash", "-c", "-e"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" Convert Combined Log Format stream into TSV file. | |
To get known about access log, see Apache HTTP server official document. | |
* [`en <http://httpd.apache.org/docs/2.4/en/logs.html>`_] | |
* [`ja <http://httpd.apache.org/docs/2.4/ja/logs.html>`_] |