Skip to content

Commit

Permalink
Get nodejs from source
Browse files Browse the repository at this point in the history
  • Loading branch information
pandel committed Feb 9, 2020
1 parent f0f36a6 commit 0a5ac2a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ RUN apt-get update \
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& echo "deb [ trusted=yes ] http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list \
&& apt-get update \
&& apt-get install -y apt-transport-https ca-certificates \
&& apt-get install -y --no-install-recommends --allow-unauthenticated \
&& apt-get install -y apt-transport-https ca-certificates

RUN apt-get install -y curl \
&& wget --quiet -O - https://deb.nodesource.com/setup_10.x | bash - \
&& apt-get install -y nodejs

RUN apt-get install -y --no-install-recommends --allow-unauthenticated \
apache2 \
apache2-dev \
autoconf \
Expand Down Expand Up @@ -54,8 +59,7 @@ RUN apt-get update \
lua5.3 \
make \
mapnik-utils \
nodejs \
npm \
node-gyp \
osmium-tool \
osmosis \
postgis \
Expand Down

0 comments on commit 0a5ac2a

Please sign in to comment.