forked from ckan/ckan-docker
-
Notifications
You must be signed in to change notification settings - Fork 6
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 #78 from mjanez/ckan-2.9.9
Update master branch
- Loading branch information
Showing
6 changed files
with
43 additions
and
33 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 |
---|---|---|
|
@@ -18,3 +18,4 @@ src/* | |
|
||
# environment | ||
.env | ||
.env.* |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
set -xeuo pipefail | ||
|
||
#TODO: -Xfrozen_modules=off from: https://bugs.python.org/issue1666807 | ||
/wait-for --timeout "$TIMEOUT" "$CKAN_URL" -- pdm run python3 -Xfrozen_modules=off ckan2pycsw/ckan2pycsw.py | ||
|
||
exec "$@" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ COPY req_fixes ${APP_DIR}/req_fixes | |
### Spatial - v2.0.0 ### fixed requirements.txt | ||
### DCAT - v1.1.0-geodcatap (GeoDCAT-AP extended version) ### | ||
### Scheming - release-3.0.0 ### | ||
### Resource dictionary - 1.0.1 ### | ||
### Resource dictionary - v1.0.1 ### | ||
### Pages - v0.5.2 ### | ||
### PDFView - 0.0.8 ### | ||
### Scheming DCAT - v1.2.0 (GeoDCAT-AP extended version) ### | ||
|
@@ -40,7 +40,7 @@ RUN echo ${TZ} > /etc/timezone && \ | |
echo "ckan/ckanext-scheming" && \ | ||
pip3 install -e git+https://github.com/ckan/[email protected]#egg=ckanext-scheming && \ | ||
echo "mjanez/ckanext-resourcedictionary" && \ | ||
pip3 install -e git+https://github.com/mjanez/ckanext-resourcedictionary.git@1.0.1#egg=ckanext-resourcedictionary && \ | ||
pip3 install -e git+https://github.com/mjanez/ckanext-resourcedictionary.git@v1.0.1#egg=ckanext-resourcedictionary && \ | ||
echo "ckan/ckanext-pages" && \ | ||
pip3 install -e git+https://github.com/ckan/[email protected]#egg=ckanext-pages && \ | ||
echo "ckan/ckanext-pdfview" && \ | ||
|