We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a636133 commit e280ea2Copy full SHA for e280ea2
1 file changed
packagingtest/xenial/systemd/Dockerfile
@@ -41,7 +41,11 @@ RUN echo -e "#!/bin/sh\nexit 101\n" > /usr/sbin/policy-rc.d && \
41
apt-get -y install gdebi-core sshpass cron netcat net-tools iproute
42
43
# install apt https transport so apt sources can be added that refernece https:// URLs
44
-RUN apt-get -y install apt-transport-https ca-certificates
+RUN apt-get -y install apt-transport-https software-properties-common ca-certificates
45
+
46
+# Add python 3.6 repository from the 3rd party PPA as it's not available in base distro
47
+RUN add-apt-repository -y ppa:deadsnakes/ppa && \
48
+ apt-get update
49
50
# install netbase package (includes /etc/protocols and other files we rely on)
51
RUN apt-get -y install netbase
0 commit comments