File tree Expand file tree Collapse file tree 15 files changed +75
-0
lines changed Expand file tree Collapse file tree 15 files changed +75
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ RUN pacman -Syy
77RUN pacman -S --noconfirm python2-pip gcc git openssl
88RUN pip2 install -r /dev_python27.txt
99
10+ # Install pudb, get rid of welcome message, and turn on line numbers
11+ RUN pip2 install pudb
12+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
13+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
14+
1015# Add symlink for python2
1116RUN ln -s /usr/bin/python2 /usr/bin/python
1217
Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ RUN easy_install-2.6 pip
3232
3333RUN pip install -r /dev_python27.txt
3434
35+ # Install pudb, get rid of welcome message, and turn on line numbers
36+ RUN pip install pudb
37+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
38+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
39+
3540ENV PYTHONPATH=/testing/:/testing/salt-testing/
3641ENV PATH=/testing/scripts/:/testing/salt/tests/:$PATH
3742
Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ RUN yum -y install python-devel
2121
2222RUN pip install -r /dev_python27.txt
2323
24+ # Install pudb, get rid of welcome message, and turn on line numbers
25+ RUN pip install pudb
26+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
27+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
28+
2429ENV PYTHONPATH=/testing/:/testing/salt-testing/
2530ENV PATH=/testing/scripts/:/testing/salt/tests/:$PATH
2631
Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ RUN apt-get -y install vim
2121RUN pip install --upgrade pip
2222RUN pip install -r /dev_python27.txt
2323
24+ # Install pudb, get rid of welcome message, and turn on line numbers
25+ RUN pip install pudb
26+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
27+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
28+
2429ENV PYTHONPATH=/testing/:/testing/salt-testing/
2530ENV PATH=/testing/scripts/:/testing/salt/tests/:$PATH
2631
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ RUN apt-get -y install vim
2020RUN pip install --upgrade pip
2121RUN pip install -r /dev_python27.txt
2222
23+ # Install pudb, get rid of welcome message, and turn on line numbers
24+ RUN pip install pudb
25+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
26+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
27+
2328ENV PYTHONPATH=/testing/:/testing/salt-testing/
2429ENV PATH=/testing/scripts/:/testing/salt/tests/:$PATH
2530
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ RUN apt-get -y install vim
2020RUN pip install --upgrade pip
2121RUN pip install -r /dev_python27.txt
2222
23+ # Install pudb, get rid of welcome message, and turn on line numbers
24+ RUN pip install pudb
25+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
26+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
27+
2328ENV PYTHONPATH=/testing/:/testing/salt-testing/
2429ENV PATH=/testing/scripts/:/testing/salt/tests/:$PATH
2530
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ RUN dnf -y install wget gcc git redhat-rpm-config salt-master salt-minion salt-s
77
88RUN pip install -r /dev_python27.txt
99
10+ # Install pudb, get rid of welcome message, and turn on line numbers
11+ RUN pip install pudb
12+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
13+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
14+
1015ENV PYTHONPATH=/testing/:/testing/salt-testing/
1116ENV PATH=/testing/scripts/:/testing/salt/tests/:$PATH
1217
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ RUN dnf -y install wget gcc git redhat-rpm-config salt-master salt-minion salt-s
77
88RUN pip install -r /dev_python27.txt
99
10+ # Install pudb, get rid of welcome message, and turn on line numbers
11+ RUN pip install pudb
12+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
13+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
14+
1015ENV PYTHONPATH=/testing/:/testing/salt-testing/
1116ENV PATH=/testing/scripts/:/testing/salt/tests/:$PATH
1217
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ RUN dnf -y install wget gcc git redhat-rpm-config salt-master salt-minion salt-s
77
88RUN pip install -r /dev_python27.txt
99
10+ # Install pudb, get rid of welcome message, and turn on line numbers
11+ RUN pip install pudb
12+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
13+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
14+
1015ENV PYTHONPATH=/testing
1116ENV PATH=/testing/scripts:/testing/salt/tests:$PATH
1217
Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ RUN zypper --non-interactive in vim
1818RUN pip install --upgrade pip
1919RUN pip install -r /dev_python27.txt
2020
21+ # Install pudb, get rid of welcome message, and turn on line numbers
22+ RUN pip install pudb
23+ RUN sed -i 's/seen_welcome = .\+ /seen_welcome = e033/' /root/.config/pudb/pudb.cfg
24+ RUN sed -i 's/line_numbers = .\+ /line_numbers = True/' /root/.config/pudb/pudb.cfg
25+
2126ENV PYTHONPATH=/testing/:/testing/salt-testing/
2227ENV PATH=/testing/scripts/:/testing/salt/tests/:$PATH
2328
You can’t perform that action at this time.
0 commit comments