Skip to content

Instantly share code, notes, and snippets.

@mifot
mifot / Dockerfile
Last active June 5, 2020 11:52 — forked from mdonkers/server.py
Simple Python 3 HTTP server for logging all GET and POST requests
FROM python:3.6
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
WORKDIR /app
COPY . .
EXPOSE 8080