Browse code

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 <itsmerojin@gmail.com>

Rojin George authored on 2016/09/30 02:58:24
Showing 1 changed files
... ...
@@ -59,7 +59,7 @@ RUN apt-get update && apt-get install -y \
59 59
 	libltdl-dev \
60 60
 	libnl-3-dev \
61 61
 	libprotobuf-c0-dev \
62
-	libprotobuf-dev	\
62
+	libprotobuf-dev \
63 63
 	libsqlite3-dev \
64 64
 	libsystemd-journal-dev \
65 65
 	libtool \