File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,23 @@ RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install --yes \
77 python3-pip \
88 locales \
99 ripgrep \
10+ curl \
1011 git \
1112 && apt-get clean \
1213 && rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
1314
15+ ARG ASPELL_VERSION=2020.12.07-0
16+ RUN curl -O https://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-$ASPELL_VERSION.tar.bz2 && \
17+ curl -O https://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-$ASPELL_VERSION.tar.bz2.sig && \
18+ gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 71C636695B147849 && \
19+ gpg --verify aspell6-en-$ASPELL_VERSION.tar.bz2.sig aspell6-en-$ASPELL_VERSION.tar.bz2 && \
20+ tar xvf aspell6-en-$ASPELL_VERSION.tar.bz2 && \
21+ cd aspell6-en-$ASPELL_VERSION && \
22+ pwd && \
23+ ./configure && make && make install && \
24+ cd .. && \
25+ rm -fr aspell6-en-$ASPELL_VERSION*
26+
1427RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen en_US.UTF-8
1528ENV LC_ALL=en_US.UTF-8
1629
You can’t perform that action at this time.
0 commit comments