From 20242dc27b8e9ad2d454cafd294086d2cddf6505 Mon Sep 17 00:00:00 2001 From: ismail shahzad Date: Thu, 4 Jun 2020 17:08:12 +0500 Subject: [PATCH] [Dockerfile] Changes version to 2.7.7 --- rootfs/Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/rootfs/Dockerfile b/rootfs/Dockerfile index 99895d8..8641a44 100644 --- a/rootfs/Dockerfile +++ b/rootfs/Dockerfile @@ -1,14 +1,14 @@ -FROM keitaro/base:0.5 +FROM viderum/base:0.5 -MAINTAINER Keitaro Inc +MAINTAINER Datopian ENV APP_DIR=/srv/app ENV SRC_DIR=/srv/app/src ENV PIP_SRC=${SRC_DIR} ENV GIT_URL=https://github.com/ckan/ckan.git -ENV GIT_BRANCH=ckan-2.7.5 +ENV GIT_BRANCH=ckan-2.7.7 ENV CKAN_SITE_URL=http://localhost:5000 -ENV CKAN__PLUGINS image_view text_view recline_view datastore datapusher archiver report envvars +ENV CKAN__PLUGINS image_view text_view recline_view datastore datapusher harvest ckan_harvester archiver report envvars WORKDIR ${APP_DIR} @@ -116,6 +116,8 @@ RUN pip install -e git+${GIT_URL}@${GIT_BRANCH}#egg=ckan && \ pip install -r requirements.txt && \ # Install CKAN envvars to support loading config from environment variables pip install -e git+https://github.com/okfn/ckanext-envvars.git#egg=ckanext-envvars && \ + pip install -e git+https://github.com/ckan/ckanext-harvest.git@v1.0.0#egg=ckanext-harvest && \ + pip install -r https://raw.githubusercontent.com/ckan/ckanext-harvest/v1.0.0/pip-requirements.txt && \ pip install -e git+http://github.com/datagovuk/ckanext-report.git#egg=ckanext-report && \ pip install --no-cache-dir -e git+https://github.com/ViderumGlobal/ckanext-archiver.git@v1.0.6-ckan-2.7#egg=ckanext-archiver && \ pip install --no-cache-dir -r https://raw.githubusercontent.com/ViderumGlobal/ckanext-archiver/v1.0.6-ckan-2.7/requirements.txt && \