tests/tools/Docker/python2.7-wxpython/Dockerfile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Tue, 30 Nov 2021 18:43:10 +0100
changeset 3392 4353c56a53d1
parent 2549 8f8735f558c7
permissions -rw-r--r--
OPC-UA client: generated code now take UA_Variants on the stack directly, avoid useless allocation on write, and unalloc implicitely allocated data on read
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