From e5fd208248a496cd798a66cb27216e83f2852a76 Mon Sep 17 00:00:00 2001 From: beierlm Date: Thu, 4 Mar 2021 16:16:53 -0500 Subject: [PATCH] Remove PyYaml apt package NBI is not building with PyYAML from apt, need to prefer the version from pip instad. Change-Id: Ie2bbf3a9c1dde60b8876f3bd2063dc1649f4904b Signed-off-by: beierlm --- docker/NBI/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/NBI/Dockerfile b/docker/NBI/Dockerfile index af03e3b6..c8ac78f8 100644 --- a/docker/NBI/Dockerfile +++ b/docker/NBI/Dockerfile @@ -22,7 +22,7 @@ FROM ubuntu:18.04 RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install curl software-properties-common -RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git python3 python3-dev python3-pip python3-yaml +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git python3 python3-dev python3-pip RUN python3 -m pip install --upgrade pip -- 2.17.1