File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 33.idea
44docker-rdkit.iml
55artifacts /
6+ .DS_Store
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ ARG GIT_TAG
1111ARG TARGETARCH
1212ARG POSTGRES_VERSION=15
1313ARG BOOST_VER=1.81
14+ ARG DEB_PACKAGE_DETAILS
15+ ARG DEB_PACKAGE_NAME=RDKit-${DEB_PACKAGE_DETAILS}-Linux-Python_${TARGETARCH}.deb
1416
1517RUN apt-get update &&\
1618 apt-get install -y --no-install-recommends \
@@ -75,7 +77,7 @@ RUN nproc=$(getconf _NPROCESSORS_ONLN)\
7577 && make -j $(( nproc > 2 ? nproc - 2 : 1 ))
7678RUN make install
7779RUN sh Code/PgSQL/rdkit/pgsql_install.sh
78- RUN cpack -G DEB
80+ RUN cpack -D CPACK_DEBIAN_FILE_NAME=${DEB_PACKAGE_NAME} - G DEB
7981RUN cd /rdkit/Code/JavaWrappers/gmwrapper && tar cvfz javadoc.tgz doc
8082
8183WORKDIR $RDBASE
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ docker buildx build $DBO -f Dockerfile-build-debian \
1212 -t $BASE /rdkit-build-debian:$DOCKER_TAG \
1313 --build-arg GIT_REPO=$GIT_REPO \
1414 --build-arg GIT_BRANCH=$GIT_BRANCH \
15+ --build-arg DEB_PACKAGE_DETAILS=$( echo $GIT_BRANCH | cut -d_ -f2 -f3) \
1516 --build-arg GIT_TAG=$GIT_TAG .
1617
1718# copy the packages
Original file line number Diff line number Diff line change 1- export DOCKER_TAG=Release_2023_03
1+ export DOCKER_TAG=latest
22export GIT_REPO=https://github.com/rdkit/rdkit.git
3- export GIT_BRANCH=Release_2023_03
3+ export GIT_BRANCH=master
44unset GIT_TAG
55
66export BASE=nmunro
You can’t perform that action at this time.
0 commit comments