Skip to content

Commit

Permalink
docker
Browse files Browse the repository at this point in the history
  • Loading branch information
zdila committed Jan 3, 2021
1 parent f9bf128 commit c0e0542
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mkdir freemap-mapnik
cd freemap-mapnik
```

Install Docker and from project home directory (freemap-mapnik) run following commands:
Install Docker and from the project home directory (freemap-mapnik) run the following commands:

```
# create network
Expand Down
8 changes: 4 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update \
&& apt-get -y install --no-install-recommends wget xz-utils \
&& wget https://nodejs.org/dist/v10.15.0/node-v10.15.0-linux-x64.tar.xz \
&& tar xf node-v10.15.0-linux-x64.tar.xz \
&& rm node-v10.15.0-linux-x64.tar.xz \
&& wget https://nodejs.org/dist/v14.15.3/node-v14.15.3-linux-x64.tar.xz \
&& tar xf node-v14.15.3-linux-x64.tar.xz \
&& rm node-v14.15.3-linux-x64.tar.xz \
&& apt-get -y remove --purge xz-utils \
&& apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/*
ENV PATH "${PATH}:/node-v10.15.0-linux-x64/bin"
ENV PATH "${PATH}:/node-v14.15.3-linux-x64/bin"
EXPOSE 4000

0 comments on commit c0e0542

Please sign in to comment.