forked from keitaroinc/docker-ckan
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Dockerfile]: Removes ckanext-harvest from the dockerfile
- Loading branch information
1 parent
8bc2ef6
commit ca43d6a
Showing
1 changed file
with
1 addition
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ ENV PIP_SRC=${SRC_DIR} | |
ENV GIT_URL=https://github.com/ckan/ckan.git | ||
ENV GIT_BRANCH=ckan-2.7.5 | ||
ENV CKAN_SITE_URL=http://localhost:5000 | ||
ENV CKAN__PLUGINS image_view text_view recline_view datastore datapusher harvest ckan_harvester archiver report envvars | ||
ENV CKAN__PLUGINS image_view text_view recline_view datastore datapusher archiver report envvars | ||
|
||
WORKDIR ${APP_DIR} | ||
|
||
|
@@ -116,8 +116,6 @@ 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/[email protected]#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/[email protected]#egg=ckanext-archiver && \ | ||
pip install --no-cache-dir -r https://raw.githubusercontent.com/ViderumGlobal/ckanext-archiver/v1.0.6-ckan-2.7/requirements.txt && \ | ||
|