From 6c2a126584acd178b208323d9dc78e3538a16720 Mon Sep 17 00:00:00 2001 From: Mateusz Gniewkowski <mateusz.gniewkowski@pwr.edu.pl> Date: Thu, 9 Jul 2020 11:11:21 +0200 Subject: [PATCH] added apt --- 3.6/Dockerfile | 4 ++++ 3.7/Dockerfile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/3.6/Dockerfile b/3.6/Dockerfile index fd04ffa..adb951f 100644 --- a/3.6/Dockerfile +++ b/3.6/Dockerfile @@ -10,6 +10,10 @@ RUN apt-get update && \ git \ wget +RUN wget -q -O - http://apt.clarin-pl.eu/KEY.gpg | apt-key add - && \ + echo 'deb https://apt.clarin-pl.eu/ /' > /etc/apt/sources.list.d/clarin.list && \ + apt-get update + RUN update-alternatives --install \ /usr/bin/python python /usr/bin/python3.6 10 && \ wget https://bootstrap.pypa.io/get-pip.py && \ diff --git a/3.7/Dockerfile b/3.7/Dockerfile index 666aedd..fe5c7e2 100644 --- a/3.7/Dockerfile +++ b/3.7/Dockerfile @@ -10,6 +10,10 @@ RUN apt-get update && \ git \ wget +RUN wget -q -O - http://apt.clarin-pl.eu/KEY.gpg | apt-key add - && \ + echo 'deb https://apt.clarin-pl.eu/ /' > /etc/apt/sources.list.d/clarin.list && \ + apt-get update + RUN update-alternatives --install \ /usr/bin/python python /usr/bin/python3.7 10 && \ wget https://bootstrap.pypa.io/get-pip.py && \ -- GitLab