[PATCH] Fixed dependency in the Dokerfile

Lukas Bulwahn lukas.bulwahn at gmail.com
Wed Feb 12 13:32:22 AEDT 2020


On Tue, 11 Feb 2020, pranavannam at gmail.com wrote:

> From: Pranav Annam <pranavannam at gmail.com>
> 
> 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 <pranavannam at gmail.com>

@Daniel, @Stephen, @others, Pranav is an GSoC applicant trying to 
contribute to patchwork. I already did a few internal rounds of 
mentoring and review with him and we decided to send out the current 
result for helpful feedback from everyone.

I will send a v2 with what I would have specifically liked the patch to 
look like.

Lukas

> ---
>  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
> Patchwork at lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/patchwork
> 


More information about the Patchwork mailing list