Skip to content
Snippets Groups Projects
Commit 0a78cf59 authored by Pedro Ferreira's avatar Pedro Ferreira
Browse files

Added Dockerfile for Jun2016-SP2

parent a62de701
No related branches found
No related tags found
No related merge requests found
...@@ -24,12 +24,8 @@ COPY configs/supervisord.conf /etc/supervisor/conf.d/supervisord.conf ...@@ -24,12 +24,8 @@ COPY configs/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
############################################################# #############################################################
# Enables repos, update system, install packages and clean up # Enables repos, update system, install packages and clean up
############################################################# #############################################################
RUN yum install -y \ RUN yum install -y epel-release \
wget \ wget
nano
RUN wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
RUN rpm -ivh epel-release-latest-7*.rpm
# Update & upgrade # Update & upgrade
RUN yum update -y && \ RUN yum update -y && \
...@@ -43,22 +39,27 @@ RUN groupadd -g 5000 monetdb && \ ...@@ -43,22 +39,27 @@ RUN groupadd -g 5000 monetdb && \
useradd -u 5000 -g 5000 monetdb useradd -u 5000 -g 5000 monetdb
# Enable MonetDB repo # Enable MonetDB repo
RUN yum install -y http://dev.monetdb.org/downloads/epel/MonetDB-release-epel-1.1-1.monetdb.noarch.rpm RUN wget -O /etc/yum.repos.d/monetdb.repo https://dev.monetdb.org/downloads/epel/monetdb.repo
RUN rpm --import http://dev.monetdb.org/downloads/MonetDB-GPG-KEY RUN rpm --import https://dev.monetdb.org/downloads/MonetDB-GPG-KEY
ARG MonetDBVersion=11.23.13
# Update & upgrade # Install MonetDB clients
RUN yum update -y RUN yum install -y MonetDB-stream-$MonetDBVersion \
MonetDB-client-$MonetDBVersion \
# Install MonetDB MonetDB-client-tools-$MonetDBVersion \
RUN yum install -y MonetDB-SQL-server5-hugeint MonetDB-client-odbc-$MonetDBVersion
RUN yum install -y MonetDB-client
# Install the MonetDB/GEOM module # Install MonetDB server
RUN yum install -y MonetDB-geom-MonetDB5 RUN yum install -y MonetDB-$MonetDBVersion \
# Install MonetDB/R (R is installed as a dependency) MonetDB-SQL-server5-hugeint-$MonetDBVersion
RUN yum install -y MonetDB-R
# Install MonetDB/GSL module # Install MonetDB extensions
RUN yum install -y MonetDB-gsl-MonetDB5 RUN yum install -y MonetDB-geom-MonetDB5-$MonetDBVersion \
MonetDB-gsl-MonetDB5-$MonetDBVersion \
MonetDB-R-$MonetDBVersion
# RUN yum install -y MonetDB-lidar-$MonetDBVersion
# Clean up # Clean up
RUN yum -y clean all RUN yum -y clean all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment