From 7edbdd9c5cdbdaa7c7fe810468b63eab2a565e71 Mon Sep 17 00:00:00 2001 From: Rojin George Date: Thu, 29 Sep 2016 23:28:24 +0530 Subject: [PATCH] Updating the DockerFile for build failure, when make build is done, fixes #27035 - What I did While building docker from source, to get the dependencies installed had done make build, then had got this error. - How I did it In the DockerFIle, instead using space a tab was put, which when was done make build the next line was getting combined and was unable to install the package. image image Refer the below Hex View of the earlier file. image - How to verify it After fixing, changing tab to space, built from source to install dependencies and was success - Description for the changelog Fixing Issue #27035 Signed-off-by: Rojin George itsmerojin@gmail.com Signed-off-by: rojingeorge --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a60212fffa..d22d7ecec7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,7 +59,7 @@ RUN apt-get update && apt-get install -y \ libltdl-dev \ libnl-3-dev \ libprotobuf-c0-dev \ - libprotobuf-dev \ + libprotobuf-dev \ libsqlite3-dev \ libsystemd-journal-dev \ libtool \