From bca0267347f8cb75f05fb7a2fd77587e9aaeb78a Mon Sep 17 00:00:00 2001 From: Pedro Ferreira <pedrotadim@outlook.com> Date: Thu, 10 Aug 2017 16:39:19 +0200 Subject: [PATCH] Added Dockerfile for Jul2017-SP1 --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 21096fc..843e2e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,13 +38,13 @@ RUN groupadd -g 5000 monetdb && \ useradd -u 5000 -g 5000 monetdb # Enable MonetDB repo -RUN yum install -y http://dev.monetdb.org/downloads/epel/MonetDB-release-epel-1.1-1.monetdb.noarch.rpm -RUN rpm --import http://dev.monetdb.org/downloads/MonetDB-GPG-KEY +RUN yum install -y https://www.monetdb.org/downloads/epel/MonetDB-release-epel.noarch.rpm # Update & upgrade -RUN yum update -y +RUN yum update -y && \ + yum upgrade -y -ARG MonetDBVersion=11.27.1 +ARG MonetDBVersion=11.27.5 # Install MonetDB server RUN yum install -y MonetDB-$MonetDBVersion \ @@ -57,7 +57,6 @@ RUN yum install -y MonetDB-$MonetDBVersion \ # Install MonetDB extensions RUN yum install -y MonetDB-geom-MonetDB5-$MonetDBVersion \ - MonetDB-gsl-MonetDB5-$MonetDBVersion \ MonetDB-R-$MonetDBVersion \ MonetDB-python2-$MonetDBVersion @@ -89,3 +88,4 @@ RUN echo "listenaddr=0.0.0.0" >> /var/monetdb5/dbfarm/.merovingian_properties RUN su -c 'sh /home/monetdb/init-db.sh' monetdb CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] + -- GitLab