From: E. Scott Daniels Date: Tue, 27 Oct 2020 11:50:03 +0000 (-0400) Subject: Fix python dev package name in builder docker X-Git-Tag: 1.9.0~2 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=4d84b4f73d7aae3d08705330033e3256b70afa72;p=it%2Fdev.git Fix python dev package name in builder docker The python dev package in alpine's package repo has change its name from python-dev to python3-dev. This fix changes the name so that the image will build. Issue-ID: RIC-672 Signed-off-by: E. Scott Daniels Change-Id: I618ea860ae57e7bd5824aaec1db9a6a1da00c56b --- diff --git a/bldr-imgs/bldr-alpine3/Dockerfile b/bldr-imgs/bldr-alpine3/Dockerfile index 8c2ad17..c52561f 100644 --- a/bldr-imgs/bldr-alpine3/Dockerfile +++ b/bldr-imgs/bldr-alpine3/Dockerfile @@ -29,7 +29,7 @@ RUN apk update && apk add \ libtool \ ninja \ pkgconfig \ - python-dev \ + python3-dev \ sudo \ git \ go