Skip to content

Instantly share code, notes, and snippets.

View rene00's full-sized avatar

rene rene00

  • Melbourne, Australia
View GitHub Profile
@rene00
rene00 / Dockerfile
Created September 26, 2017 04:16 — forked from cwill747/Dockerfile
Python2.6 on Alpine Docker
FROM gliderlabs/alpine:3.4
# ensure local python is preferred over distribution python
ENV PATH /usr/local/bin:$PATH
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install ca-certificates so that HTTPS works consistently