Skip to content

Commit d719233

Browse files
committed
Update node base images
1 parent 1162dca commit d719233

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
# GitHub https://github.com/3dcitydb/3dcitydb-web-map
44
###############################################################################
55
# Base image
6-
ARG baseimage_tag='10'
6+
ARG baseimage_tag='21-bookworm'
77
FROM "node:${baseimage_tag}"
88
# Maintainer ##################################################################
99
# Bruno Willenborg
1010
# Chair of Geoinformatics
1111
# Department of Civil, Geo and Environmental Engineering
1212
# Technical University of Munich (TUM)
1313
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]>
1515

1616
# Setup 3DCityDB Web Map Client ###############################################
17-
ARG webmapclient_version='v1.6.0'
17+
ARG webmapclient_version='v1.9.1'
1818
RUN set -x \
1919
&& BUILD_PACKAGES='ca-certificates git' \
2020
&& apt-get update && apt-get install -y --no-install-recommends $BUILD_PACKAGES \
@@ -23,12 +23,12 @@ RUN set -x \
2323
&& rm -rf ./.git ./.gitignore ./LICENSE ./README.md ./build.xml \
2424
./node_modules ./server.js $(ls -1 --ignore=ajax-loader.gif --ignore=favicon.png \
2525
--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) \
2727
&& mkdir -p /var/www/data \
2828
&& apt-get purge -y --auto-remove $BUILD_PACKAGES \
2929
&& rm -rf /var/lib/apt/lists/*
3030

31-
WORKDIR /var/www/
31+
WORKDIR /var/www/
3232
COPY package.json ./
3333
COPY html/* ./
3434
COPY server.js ./

alpine/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# GitHub https://github.com/3dcitydb/3dcitydb-web-map
44
###############################################################################
55
# Base image
6-
ARG baseimage_tag='10-alpine'
6+
ARG baseimage_tag='21-alpine'
77
FROM node:${baseimage_tag}
88
# Maintainer ##################################################################
99
# Bruno Willenborg
@@ -14,19 +14,19 @@ FROM node:${baseimage_tag}
1414
MAINTAINER Bruno Willenborg, Chair of Geoinformatics, Technical University of Munich (TUM) <[email protected]>
1515

1616
# Setup 3DCityDB Web Map Client ###############################################
17-
ARG webmapclient_version='v1.6.0'
17+
ARG webmapclient_version='v1.9.1'
1818
RUN set -x && \
1919
apk update && \
2020
apk add --no-cache --virtual .fetch-deps openssl git && \
2121
git clone -b "${webmapclient_version}" --depth 1 \
2222
https://github.com/3dcitydb/3dcitydb-web-map.git /var/www && \
2323
cd /var/www && \
2424
rm -rf .git .gitignore LICENSE README.md build.xml \
25-
node_modules server.js && \
25+
node_modules server.js && \
2626
mkdir -p /var/www/data && \
2727
apk del .fetch-deps
2828

29-
WORKDIR /var/www/
29+
WORKDIR /var/www/
3030
COPY package.json ./
3131
COPY html/* ./
3232
COPY server.js ./

0 commit comments

Comments
 (0)