Skip to content

Commit b418c8b

Browse files
committed
fix: Update Dockerfile base image to debian:bookworm
1 parent 2a73a74 commit b418c8b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM debian:bullseye
2-
#FROM debian:bookworm
1+
#FROM debian:bullseye
2+
FROM debian:bookworm
33

44
LABEL maintainer="Valentino Lauciani <valentino.lauciani@ingv.it>"
55

@@ -79,8 +79,8 @@ RUN tar xvzf qlib2.2019.365.tar.gz \
7979
&& mv Makefile.new Makefile \
8080
&& ARCHITECTURE=$(uname -m) \
8181
&& if [ "${ARCHITECTURE}" = "aarch64" ]; then \
82-
sed -e 's|C64\s=.*|C64 = |' Makefile > Makefile.new \
83-
&& mv Makefile.new Makefile ; \
82+
sed -e 's|C64\s=.*|C64 = |' Makefile > Makefile.new \
83+
&& mv Makefile.new Makefile ; \
8484
fi \
8585
&& mkdir /usr/local/share/man/man3/ \
8686
&& mkdir /usr/local/lib64 \
@@ -100,8 +100,8 @@ RUN tar xvzf qmerge.2014.329.tar.gz \
100100
&& mv Makefile.new Makefile \
101101
&& ARCHITECTURE=$(uname -m) \
102102
&& if [ "${ARCHITECTURE}" = "aarch64" ]; then \
103-
sed -e 's|^CC.*|CC = cc -Wall|' Makefile > Makefile.new \
104-
&& mv Makefile.new Makefile ; \
103+
sed -e 's|^CC.*|CC = cc -Wall|' Makefile > Makefile.new \
104+
&& mv Makefile.new Makefile ; \
105105
fi
106106
# Fix for multiple definition error of 'qverify' and 'verify' variables during linking.
107107
# This modifies 'externals.h' to declare 'qverify' and 'verify' as external variables

0 commit comments

Comments
 (0)