3
3
# GitHub https://github.com/3dcitydb/3dcitydb-web-map
4
4
# ##############################################################################
5
5
# Base image
6
- ARG baseimage_tag='10 '
6
+ ARG baseimage_tag='21-bookworm '
7
7
FROM "node:${baseimage_tag}"
8
8
# Maintainer ##################################################################
9
9
# Bruno Willenborg
10
10
# Chair of Geoinformatics
11
11
# Department of Civil, Geo and Environmental Engineering
12
12
# Technical University of Munich (TUM)
13
13
14
- MAINTAINER Bruno Willenborg, Chair of Geoinformatics, Technical University of Munich (TUM) <
[email protected] >
14
+ # MAINTAINER Bruno Willenborg, Chair of Geoinformatics, Technical University of Munich (TUM) <[email protected] >
15
15
16
16
# Setup 3DCityDB Web Map Client ###############################################
17
- ARG webmapclient_version='v1.6.0 '
17
+ ARG webmapclient_version='v1.9.1 '
18
18
RUN set -x \
19
19
&& BUILD_PACKAGES='ca-certificates git' \
20
20
&& apt-get update && apt-get install -y --no-install-recommends $BUILD_PACKAGES \
@@ -23,12 +23,12 @@ RUN set -x \
23
23
&& rm -rf ./.git ./.gitignore ./LICENSE ./README.md ./build.xml \
24
24
./node_modules ./server.js $(ls -1 --ignore=ajax-loader.gif --ignore=favicon.png \
25
25
--ignore=GPS_off.png --ignore=GPS_on.png --ignore=GPS_on_ori.png --ignore=GPS_on_pos_ori.png \
26
- ./theme/img) \
26
+ ./theme/img) \
27
27
&& mkdir -p /var/www/data \
28
28
&& apt-get purge -y --auto-remove $BUILD_PACKAGES \
29
29
&& rm -rf /var/lib/apt/lists/*
30
30
31
- WORKDIR /var/www/
31
+ WORKDIR /var/www/
32
32
COPY package.json ./
33
33
COPY html/* ./
34
34
COPY server.js ./
0 commit comments