File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ ENV AG="apt-get -qqy --no-install-recommends -o=Dpkg::Use-Pty=0"
1010ENV SETUPQ="setup.py -q easy_install --always-unzip ."
1111ENV DEBIAN_FRONTEND=noninteractive
1212ENV BUILD_DIR="/var/tmp/build"
13- ENV BUILD_DEPS="devscripts"
13+ ENV BUILD_DEPS="devscripts software-properties-common "
1414ENV PATH="/venv/bin:$PATH"
1515
1616COPY setup.sh /
@@ -37,6 +37,7 @@ RUN /setupproxy.sh \
3737 iputils-ping \
3838 iproute2 \
3939 isc-dhcp-client \
40+ kmod \
4041 ladvd \
4142 locales \
4243 libpython3-dev \
@@ -70,6 +71,9 @@ RUN /setupproxy.sh \
7071 && echo "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" > /etc/apt/sources.list.d/docker.list \
7172 && ${AG} update \
7273 && ${AG} install docker-ce \
74+ # Upgrade git for github actions
75+ && add-apt-repository -y ppa:git-core/ppa \
76+ && ${AG} install git \
7377# Cleanup
7478 && ${AG} purge openvswitch-build-deps ${BUILD_DEPS} \
7579 && ${AG} autoremove --purge \
You can’t perform that action at this time.
0 commit comments