diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -5,8 +5,7 @@ RUN apk add --no-cache npm g++ WORKDIR /webserver # Get a word list for the abbrgen module -RUN wget 'http://app.aspell.net/create?max_size=60&spelling=GBs&max_variant=0&diacritic=strip&special=hacker&download=wordlist&encoding=utf-8&format=inline' -O words && \ - printf "1,/---/ d\nw\nq\n" | ed words >/dev/null +RUN wget 'http://app.aspell.net/create?max_size=60&spelling=GBs&max_variant=0&diacritic=strip&special=hacker&download=wordlist&encoding=utf-8&format=inline' -O - | sed '1,/---/d' >words COPY . . # The --unsafe-perm flag is to allow building the abbreviation_gen executable |