Skip to content

Commit

Permalink
Merge pull request fossgis-routing-server#3 from halkoma/patch-1
Browse files Browse the repository at this point in the history
Update Dockerfile to include git
  • Loading branch information
datendelphin authored Aug 6, 2023
2 parents d58f04d + 0ac15f1 commit 7c59dc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN mkdir -p /src
COPY package.json /src

# Install app dependencies
RUN apk add --no-cache sed nodejs && \
RUN apk add --no-cache sed nodejs git && \
cd /src && \
npm install

Expand Down
6 changes: 3 additions & 3 deletions src/leaflet_options.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ module.exports = {
},
services: [{
label: 'Car',
path: '/routed-car/route/v1',
path: 'https://routing.openstreetmap.de/routed-car/route/v1',
debug: 'car',
},
{
label: 'Bike',
path: '/routed-bike/route/v1',
path: 'https://routing.openstreetmap.de/routed-bike/route/v1',
debug: 'bike',
},
{
label: 'Foot',
path: '/routed-foot/route/v1',
path: 'https://routing.openstreetmap.de/routed-foot/route/v1',
debug: 'foot',
}],
layer: [{
Expand Down

0 comments on commit 7c59dc5

Please sign in to comment.