File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/ci/docker/dist-various-2 Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:17.10
1+ FROM ubuntu:18.04
22
33COPY scripts/cross-apt-packages.sh /scripts/
44RUN sh /scripts/cross-apt-packages.sh
55
6- RUN apt-get build-dep -y clang llvm && apt-get install -y --no-install-recommends \
6+ # Enable source repositories, which are disabled by default on Ubuntu >= 18.04
7+ RUN sed -i 's/^# deb-src/deb-src/' /etc/apt/sources.list
8+
9+ RUN apt-get update && apt-get build-dep -y clang llvm && apt-get install -y --no-install-recommends \
710 build-essential \
811 gcc-multilib \
912 libedit-dev \
@@ -15,7 +18,10 @@ RUN apt-get build-dep -y clang llvm && apt-get install -y --no-install-recommend
1518 nodejs \
1619 python2.7-dev \
1720 software-properties-common \
18- unzip
21+ unzip \
22+ # Needed for apt-key to work:
23+ dirmngr \
24+ gpg-agent
1925
2026RUN apt-key adv --batch --yes --keyserver keyserver.ubuntu.com --recv-keys 74DA7924C5513486
2127RUN add-apt-repository -y 'deb http://apt.dilos.org/dilos dilos2-testing main'
You can’t perform that action at this time.
0 commit comments