diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-25 14:35:57 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-25 14:35:57 +1000 |
commit | 302176b6a373e708fefcdcc6d316293f15a097f2 (patch) | |
tree | ba02e9cb7ec2122822401fbd3826e2b178be3f27 /docker/build-osm.Dockerfile | |
parent | 6f74da1aeb594b5ae979827ab692490d58f0ac84 (diff) |
upgrade to node 15 for String.replaceAll support
Diffstat (limited to 'docker/build-osm.Dockerfile')
-rw-r--r-- | docker/build-osm.Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/build-osm.Dockerfile b/docker/build-osm.Dockerfile index c557fe3..ad709c7 100644 --- a/docker/build-osm.Dockerfile +++ b/docker/build-osm.Dockerfile @@ -1,6 +1,6 @@ FROM debian:unstable-slim RUN apt-get -y update && apt-get -y install curl gnupg make wget unzip gdal-bin osmium-tool software-properties-common -RUN curl -fsSL https://deb.nodesource.com/setup_12.x | bash - +RUN curl -fsSL https://deb.nodesource.com/setup_15.x | bash - RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list RUN apt-get -y update && apt-get -y install nodejs yarn |