forked from ckan/ckan-docker
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from GenomicDataInfrastructure/replace-extensions
fix: replace ckan extensions location
- Loading branch information
Showing
8 changed files
with
26 additions
and
26 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 |
---|---|---|
|
@@ -2,19 +2,3 @@ | |
path = src/ckanext-gdi-userportal | ||
url = [email protected]:GenomicDataInfrastructure/ckanext-gdi-userportal.git | ||
branch = main | ||
[submodule "src/ckanext-dcat"] | ||
path = src/ckanext-dcat | ||
url = [email protected]:GenomicDataInfrastructure/gdi-userportal-ckanext-dcat.git | ||
branch = user-portal-v1.5.1 | ||
[submodule "src/ckanext-harvest"] | ||
path = src/ckanext-harvest | ||
url = [email protected]:GenomicDataInfrastructure/gdi-userportal-ckanext-harvest.git | ||
branch = user-portal-v1.5.6 | ||
[submodule "src/ckanext-scheming"] | ||
path = src/ckanext-scheming | ||
url = [email protected]:GenomicDataInfrastructure/gdi-userportal-ckanext-scheming.git | ||
branch = user-portal-v3.0.0 | ||
[submodule "src/ckanext-fairdatapoint"] | ||
path = src/ckanext-fairdatapoint | ||
url = https://github.com/GenomicDataInfrastructure/gdi-userportal-ckanext-fairdatapoint.git | ||
branch = user-portal |
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
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 |
---|---|---|
|
@@ -3,17 +3,16 @@ FROM ckan/ckan-base:2.10.3 | |
# Install any extensions needed by your CKAN instance | ||
# See Dockerfile.dev for more details and examples | ||
|
||
|
||
RUN pip3 install -e git+https://github.com/GenomicDataInfrastructure/[email protected]#egg=ckanext-gdi-userportal && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-gdi-userportal/requirements.txt | ||
|
||
RUN pip3 install -e git+https://github.com/GenomicDataInfrastructure/gdi-userportal-ckanext-dcat.git@user-portal-v1.5.1#egg=ckanext-dcat && \ | ||
RUN pip3 install -e git+https://github.com/ckan/[email protected]#egg=ckanext-dcat && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-dcat/requirements.txt | ||
|
||
RUN pip3 install -e git+https://github.com/GenomicDataInfrastructure/gdi-userportal-ckanext-harvest.git@user-portal-v1.5.6#egg=ckanext-harvest && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-harvest/requirements.txt | ||
RUN pip3 install -e git+https://github.com/ckan/[email protected]#egg=ckanext-harvest && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-harvest/requirements.txt | ||
|
||
RUN pip3 install -e git+https://github.com/GenomicDataInfrastructure/gdi-userportal-ckanext-scheming.git@user-portal-v3.0.0#egg=ckanext-scheming | ||
RUN pip3 install -e git+https://github.com/ckan/ckanext-scheming.git@release-3.0.0#egg=ckanext-scheming | ||
|
||
RUN pip3 install -e git+https://github.com/DataShades/[email protected]#egg=ckanext-oidc-pkce && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-oidc-pkce/requirements.txt | ||
|
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 |
---|---|---|
@@ -1,8 +1,19 @@ | ||
FROM ckan/ckan-dev:2.10.3 | ||
|
||
RUN pip3 install -e git+https://github.com/ckan/[email protected]#egg=ckanext-dcat && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-dcat/requirements.txt | ||
|
||
RUN pip3 install -e git+https://github.com/ckan/[email protected]#egg=ckanext-harvest && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-harvest/requirements.txt | ||
|
||
RUN pip3 install -e git+https://github.com/ckan/[email protected]#egg=ckanext-scheming | ||
|
||
RUN pip3 install -e git+https://github.com/DataShades/[email protected]#egg=ckanext-oidc-pkce && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-oidc-pkce/requirements.txt | ||
|
||
RUN pip3 install -e git+https://github.com/GenomicDataInfrastructure/gdi-userportal-ckanext-fairdatapoint.git@user-portal#egg=ckanext-fairdatapoint && \ | ||
pip3 install -r ${APP_DIR}/src/ckanext-fairdatapoint/requirements.txt | ||
|
||
# Clone the extension(s) your are writing for your own project in the `src` folder | ||
# to get them mounted in this image at runtime | ||
|
||
|
Submodule ckanext-dcat
deleted from
a55af9
Submodule ckanext-fairdatapoint
deleted from
f714d8
Submodule ckanext-harvest
deleted from
23ac96
Submodule ckanext-scheming
deleted from
18d8c7