From 7ffe255d93253141a78cebe1a3d5cff818c7873c Mon Sep 17 00:00:00 2001 From: Koen Kanters Date: Wed, 16 Oct 2019 21:54:46 +0200 Subject: [PATCH] Install udev. #2145 #2146 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index d31e29c18..76adad7e9 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,7 +12,7 @@ ARG COMMIT RUN echo "{\"hash\": \"$COMMIT\"}" > .hash.json # Install dependencies -RUN apk add --update --no-cache tzdata && \ +RUN apk add --update --no-cache tzdata udev && \ apk add --update --no-cache --virtual .buildtools make gcc g++ python linux-headers udev git && \ npm install --unsafe-perm --production && \ apk del .buildtools