author | Edouard Tisserant |
Wed, 25 Mar 2020 13:36:04 +0100 | |
branch | svghmi |
changeset 2897 | bf8a39cc65e4 |
parent 2549 | 8f8735f558c7 |
permissions | -rw-r--r-- |
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 |