diff --git a/validation/Dockerfile b/validation/Dockerfile index 2af9344470fb14bbc6f1b660d0d84dd203b23dd6..8b4e6baa1a7211b7f1fedd066e09e7787a000972 100644 --- a/validation/Dockerfile +++ b/validation/Dockerfile @@ -78,7 +78,7 @@ COPY --chmod=755 validate-mmcif-file.py /usr/local/bin/validate-mmcif-file ## https://github.com/ihmwg/ModelCIF/blob/master/dist/mmcif_ma.dic. ## Dictionaries do not change that frequently therefore we skip the hassle of ## keeping them in an external volume. -ARG USE_DICT_VERSION="1.4.1" +ARG USE_DICT_VERSION="1.4.2" ENV USE_DICT_VERSION=${USE_DICT_VERSION} LABEL org.modelarchive.dict_release="${USE_DICT_VERSION}" WORKDIR ${SRC_DIR} @@ -97,7 +97,7 @@ RUN set -e pipefail; \ gunzip *.gz; \ # ## Fetch the merged ModelCIF dictionary - if test x${USE_DICT_VERSION}==xlatest; then \ + if test x${USE_DICT_VERSION} == xlatest; then \ export _MA_DICT_URL="${_GIT_URL}/dist/mmcif_ma.dic"; \ fi; \ curl ${_MA_DICT_URL} -s -L -o mmcif_ma.dic; \ @@ -116,7 +116,7 @@ RUN set -e pipefail; \ -dictSdbFile ${MMCIF_DICTS_DIR}/mmcif_pdbx_v50.dic.sdb; \ # ## Get versions of ModelCIF & PDBx/mmCIF dictionaries - get-mmcif-dict-versions --parent-location ${_REPO_URL}/base/mmcif_pdbx_v50.dic \ + get-mmcif-dict-versions --parent-location ${_GIT_URL}/base/mmcif_pdbx_v50.dic \ --child-location ${_MA_DICT_URL} \ mmcif_ma.dic; \ mv mmcif_ma_version.json ${MMCIF_DICTS_DIR}/; \