Skip to content

Instantly share code, notes, and snippets.

@elo80ka
elo80ka / Dockerfile
Last active June 17, 2018 00:57
Source code and Dockerfile for demo app from the Lagos Software Engineering Group container talk.
FROM python:3.6.4-alpine3.7
WORKDIR /app
ADD code.py /app
CMD ["python", "/app/code.py"]