]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
docker: update dependency for current build
authorPranav Annam <pranavannam@gmail.com>
Wed, 12 Feb 2020 03:35:47 +0000 (04:35 +0100)
committerDaniel Axtens <dja@axtens.net>
Mon, 17 Feb 2020 12:20:15 +0000 (23:20 +1100)
The dependency libssl1.0-dev in the Dockerfile makes docker build fail:

  The following packages have unmet dependencies:
   libmysqlclient-dev : Depends: libssl-dev (>= 1.1.1-1ubuntu2.1~18.04.5~)
  but it is not going to be installed
  E: Unable to correct problems, you have held broken packages.

There seems to be a conflict with different versions of libssl and
libmysqlclient that did not exist previously with Ubuntu 18.04.

Just use the current libssl-dev from Ubuntu 18.04 to fix the build.

Signed-off-by: Pranav Annam <pranavannam@gmail.com>
[rephrased commit message]
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Signed-off-by: Daniel Axtens <dja@axtens.net>
tools/docker/Dockerfile

index 5ef11203e850ed019c0b21a4d04f3e904e68d209..62ac461b7fccfbc0d4923f11a474dcf3157f18ee 100644 (file)
@@ -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 \