File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
22
3+ # Needed to install pyside2-tools without issues
4+ ENV DEBIAN_FRONTEND noninteractive
5+
36RUN apt-get update && \
47 apt-get install -y \
58 software-properties-common && \
@@ -12,8 +15,12 @@ RUN apt-get update && \
1215 python-pyqt5 \
1316 python-pyside \
1417 python-pyside2 \
18+ pyside2-tools \
1519 xvfb
1620
21+ # Make pyside2uic availble for Python 2.x
22+ RUN cp -avr /usr/lib/python3/dist-packages/pyside2uic /usr/local/lib/python2.7/dist-packages
23+
1724# Nose is the Python test-runner
1825RUN pip install nose nosepipe
1926
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
22
3+ # Needed to install pyside2-tools without issues
4+ ENV DEBIAN_FRONTEND noninteractive
5+
36RUN apt-get update && \
47 apt-get install -y \
58 software-properties-common && \
@@ -12,6 +15,7 @@ RUN apt-get update && \
1215 python3-pyqt5 \
1316 python3-pyside \
1417 python3-pyside2 \
18+ pyside2-tools \
1519 xvfb
1620
1721# Nose is the Python test-runner
You can’t perform that action at this time.
0 commit comments