[PATCH] Fixed dependency in the Dokerfile
pranavannam at gmail.com
pranavannam at gmail.com
Wed Feb 12 04:00:25 AEDT 2020
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>
---
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
More information about the Patchwork
mailing list