tests/tools/Docker/python2.7-wxpython/Dockerfile
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Mon, 18 Mar 2019 12:20:46 +0300
changeset 2549 8f8735f558c7
permissions -rw-r--r--
Add Docker files to build containers to run automated tests
2549
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     1
#
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     2
# Dockerfile for wxPython3.0 running on python2.7
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     3
#
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     4
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     5
FROM python:2.7-stretch
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     6
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     7
RUN set -xe \
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     8
    && apt-get update \
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
     9
    && apt-get install -y --no-install-recommends python-wxgtk3.0 python-matplotlib \
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    10
    && apt-get install -y --no-install-recommends python-xvfbwrapper xvfb \
8f8735f558c7 Add Docker files to build containers to run automated tests
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
diff changeset
    11
    && apt-get clean