diff --git a/container/Dockerfile b/container/Dockerfile index 96982ba..04bbdb0 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -35,13 +35,9 @@ RUN pip3 install --upgrade setuptools pip # Install our runtime server RUN pip3 install "gunicorn~=20.1" -# FIXME: At later stage run installation with pip3 directly from source +# Install from git RUN pip3 install "git+${DMCI_REPO}@${DMCI_VERSION}#dmci=discovery-metadata-catalog-ingestor" -# Install from Git -#RUN git clone --depth 1 --branch ${DMCI_VERION} ${DMCI_REPO} /dmci -#RUN pip3 install -e /dmci - # Download MMD RUN git clone --depth 1 --branch ${MMD_VERSION} ${MMD_REPO} /tmp/mmd; \ mkdir -p /usr/share/mmd/xslt /usr/share/mmd/xsd; \