tests/tools/Docker/python2.7-wxpython/Dockerfile
author Edouard Tisserant
Thu, 05 Sep 2019 08:35:33 +0200
changeset 2633 fecdb71e7514
parent 2549 8f8735f558c7
permissions -rw-r--r--
Fixed sequel of earlier commit in PLCGenerator.py. Some ref to temporary variables are still not using the _TMP_ prefix. They are quite hard to find, so to be continued...
#
# Dockerfile for wxPython3.0 running on python2.7
#

FROM python:2.7-stretch

RUN set -xe \
    && apt-get update \
    && apt-get install -y --no-install-recommends python-wxgtk3.0 python-matplotlib \
    && apt-get install -y --no-install-recommends python-xvfbwrapper xvfb \
    && apt-get clean