From e3f45d2770327c44b760aaa0077777a653298e4b Mon Sep 17 00:00:00 2001 From: Prashant Malani Date: Fri, 4 May 2018 17:27:01 -0700 Subject: [PATCH] scripts: Modify Docker Ubuntu version This ensures that the ubuntu version we use has the right versions of Open SSL. Without this, the rimage compilation will fail with the following error: pkcs1_5.c: In function 'pkcs_sign': pkcs1_5.c:117:20: error: dereferencing pointer to incomplete type 'RSA {aka struct rsa_st}' Signed-off-by: Prashant Malani Acked-by: Dylan Reid --- scripts/docker_build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docker_build/Dockerfile b/scripts/docker_build/Dockerfile index 6b587e290..7ee0a4513 100644 --- a/scripts/docker_build/Dockerfile +++ b/scripts/docker_build/Dockerfile @@ -14,7 +14,7 @@ # docker run -it -v :/home/sof/work/sof.git -v :/home/sof/work/soft.git --user `id -u` sof ./incremental.sh # -FROM ubuntu +FROM ubuntu:16.04 ARG UID=1000 RUN apt-get -y update && \