tests/tools/Docker/python2.7-wxpython/Dockerfile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Mon, 28 Feb 2022 21:53:14 +0100
branchwxPython4
changeset 3436 ccaabb9da623
parent 2549 8f8735f558c7
permissions -rw-r--r--
Tests: add an IDE test that relies on image matching.
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