From: Pranav Annam <[email protected]> The dependency libssl1.0-dev in the dockerfile makes the docker build fail. There seems to be a conflict with different versions of libssl and libmysqlclient that did not exist in the past. So instead going for the newer version of libssl and holding for the earlier and stable version(libssl-dev) fixed the docker build.
Signed-off-by: Pranav Annam <[email protected]> --- tools/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 5ef1120..62ac461 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -35,7 +35,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libpq-dev \ libreadline-dev \ libsqlite3-dev \ - libssl1.0-dev \ + libssl-dev \ mysql-client \ postgresql-client \ tzdata \ -- 2.17.1 _______________________________________________ Patchwork mailing list [email protected] https://lists.ozlabs.org/listinfo/patchwork
