mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 08:03:14 +01:00
9 lines
336 B
Text
9 lines
336 B
Text
|
FROM elasticsearch:6.8.6
|
||
|
|
||
|
RUN \
|
||
|
mkdir -p /usr/share/elasticsearch/config/analysis && \
|
||
|
pushd /usr/share/elasticsearch/config/analysis && \
|
||
|
curl -sSLO https://github.com/uschindler/german-decompounder/raw/master/de_DR.xml && \
|
||
|
curl -sSLO https://github.com/uschindler/german-decompounder/raw/master/dictionary-de.txt && \
|
||
|
popd
|