Skip to content

Commit

Permalink
Merge pull request #47 from GenomicDataInfrastructure/46-bug-report
Browse files Browse the repository at this point in the history
fix: Resolve issue #46
  • Loading branch information
brunopacheco1 authored Feb 22, 2024
2 parents 9def66f + 2f45fc1 commit 2b0c339
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ckan/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ RUN pip3 install -e git+https://github.com/ckan/[email protected]#egg=cka
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 git clone https://github.com/CivityNL/ckanext-scheming.git ${APP_DIR}/src/ckanext-scheming && \
cd "${APP_DIR}/src/ckanext-scheming" && \
git checkout release-3.0.0-civity && \
pip3 install -e .

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
Expand Down
5 changes: 4 additions & 1 deletion ckan/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ RUN pip3 install -e git+https://github.com/ckan/[email protected]#egg=cka
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 git clone https://github.com/CivityNL/ckanext-scheming.git ${APP_DIR}/src/ckanext-scheming && \
cd "${APP_DIR}/src/ckanext-scheming" && \
git checkout release-3.0.0-civity && \
pip3 install -e .

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
Expand Down

0 comments on commit 2b0c339

Please sign in to comment.