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 3
3
.idea
4
4
docker-rdkit.iml
5
5
artifacts /
6
+ .DS_Store
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ ARG GIT_TAG
11
11
ARG TARGETARCH
12
12
ARG POSTGRES_VERSION=15
13
13
ARG BOOST_VER=1.81
14
+ ARG DEB_PACKAGE_DETAILS
15
+ ARG DEB_PACKAGE_NAME=RDKit-${DEB_PACKAGE_DETAILS}-Linux-Python_${TARGETARCH}.deb
14
16
15
17
RUN apt-get update &&\
16
18
apt-get install -y --no-install-recommends \
@@ -75,7 +77,7 @@ RUN nproc=$(getconf _NPROCESSORS_ONLN)\
75
77
&& make -j $(( nproc > 2 ? nproc - 2 : 1 ))
76
78
RUN make install
77
79
RUN 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
79
81
RUN cd /rdkit/Code/JavaWrappers/gmwrapper && tar cvfz javadoc.tgz doc
80
82
81
83
WORKDIR $RDBASE
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ docker buildx build $DBO -f Dockerfile-build-debian \
12
12
-t $BASE /rdkit-build-debian:$DOCKER_TAG \
13
13
--build-arg GIT_REPO=$GIT_REPO \
14
14
--build-arg GIT_BRANCH=$GIT_BRANCH \
15
+ --build-arg DEB_PACKAGE_DETAILS=$( echo $GIT_BRANCH | cut -d_ -f2 -f3) \
15
16
--build-arg GIT_TAG=$GIT_TAG .
16
17
17
18
# 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
2
2
export GIT_REPO=https://github.com/rdkit/rdkit.git
3
- export GIT_BRANCH=Release_2023_03
3
+ export GIT_BRANCH=master
4
4
unset GIT_TAG
5
5
6
6
export BASE=nmunro
You can’t perform that action at this time.
0 commit comments