File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ RUN apt update -y && apt install -y \
13
13
libpq-dev \
14
14
libproj-dev \
15
15
libprotozero-dev \
16
- osmium-tool \
17
- osmosis \
18
16
postgresql-client \
19
17
ruby-dev \
20
18
ruby-json \
@@ -30,6 +28,19 @@ RUN git clone https://github.com/osmcode/osm-postgresql-experiments.git && \
30
28
cmake .. && \
31
29
make install
32
30
31
+ WORKDIR /srv/
32
+
33
+ # Custom patch, wating for https://github.com/osmcode/osmium-tool/issues/282
34
+ ADD osmium-tool-merge-osc-deleted.diff .
35
+ RUN git clone https://github.com/osmcode/osmium-tool.git && \
36
+ cd osmium-tool && \
37
+ git checkout v1.13.0 && \
38
+ patch -p1 < ../osmium-tool-merge-osc-deleted.diff && \
39
+ mkdir build && \
40
+ cd build && \
41
+ cmake .. && \
42
+ make install
43
+
33
44
WORKDIR /srv/app
34
45
35
46
ADD Gemfile Gemfile.lock ./
You can’t perform that action at this time.
0 commit comments