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
182
182
183
183
################################# Tomcat image ######################################
184
184
185
- FROM informaticsmatters/tomcat:8.5-jre11 AS tomcat
185
+ FROM informaticsmatters/tomcat:10.1-jre17 AS tomcat
186
186
LABEL maintainer="Tim Dudgeon<
[email protected] >"
187
187
188
+ ARG BOOST_VER=1.81
189
+
188
190
USER root
189
191
190
192
RUN apt-get update &&\
191
193
apt-get upgrade -y &&\
192
194
apt-get install -y --no-install-recommends\
193
195
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 \
202
204
libfreetype6-dev &&\
203
205
apt-get clean -y
204
206
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ echo "Built images $BASE/rdkit-java-debian:$DOCKER_TAG"
29
29
30
30
# build image for tomcat on debian
31
31
docker buildx build $DBO -f $DOCKERFILE \
32
- --platform linux/amd64 \
32
+ --platform linux/amd64,linux/arm64 \
33
33
--target tomcat \
34
34
-t $BASE /rdkit-tomcat-debian:$DOCKER_TAG \
35
35
--build-arg GIT_REPO=$GIT_REPO \
You can’t perform that action at this time.
0 commit comments