From f74368500ae2e16b32ec3aec557798c583eac981 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sun, 22 Oct 2017 12:26:18 -0500 Subject: [PATCH] Fix missing iproute2 dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d675150..4e14f64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Isaac A., RUN apt update \ && apt upgrade -y \ - && apt install -y lib32gcc1 lib32stdc++6 unzip curl \ + && apt install -y lib32gcc1 lib32stdc++6 unzip curl iproute2 \ && curl -sL https://deb.nodesource.com/setup_6.x | bash - \ && apt install -y nodejs \ && mkdir /node_modules \