File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed
Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -182,23 +182,25 @@ USER 1000
182182
183183################################# Tomcat image ######################################
184184
185- FROM informaticsmatters/tomcat:8.5-jre11 AS tomcat
185+ FROM informaticsmatters/tomcat:10.1-jre17 AS tomcat
186186LABEL maintainer="Tim Dudgeon<
[email protected] >"
187187
188+ ARG BOOST_VER=1.81
189+
188190USER root
189191
190192RUN apt-get update &&\
191193 apt-get upgrade -y &&\
192194 apt-get install -y --no-install-recommends\
193195 unzip\
194- libboost-system1.74.0 \
195- libboost-thread1.74.0 \
196- libboost-serialization1.74.0 \
197- libboost-regex1.74.0 \
198- libboost-chrono1.74.0 \
199- libboost-date-time1.74.0 \
200- libboost-atomic1.74.0 \
201- libboost-iostreams1.74.0 \
196+ libboost-system$BOOST_VER \
197+ libboost-thread$BOOST_VER \
198+ libboost-serialization$BOOST_VER \
199+ libboost-regex$BOOST_VER \
200+ libboost-chrono$BOOST_VER \
201+ libboost-date-time$BOOST_VER \
202+ libboost-atomic$BOOST_VER \
203+ libboost-iostreams$BOOST_VER \
202204 libfreetype6-dev &&\
203205 apt-get clean -y
204206
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ echo "Built images $BASE/rdkit-java-debian:$DOCKER_TAG"
2929
3030# build image for tomcat on debian
3131docker buildx build $DBO -f $DOCKERFILE \
32- --platform linux/amd64 \
32+ --platform linux/amd64,linux/arm64 \
3333 --target tomcat \
3434 -t $BASE /rdkit-tomcat-debian:$DOCKER_TAG \
3535 --build-arg GIT_REPO=$GIT_REPO \
You can’t perform that action at this time.
0 commit comments