Skip to content

Commit 05ad34d

Browse files
committed
Dockerfile: hack around the /usr/share/codespell/dictionary.txt assumption :(
trixie seems to have installed the dictionary file in a different location. Signed-off-by: Nishanth Menon <[email protected]>
1 parent 84dd216 commit 05ad34d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ RUN apt-get update \
8989

9090
COPY other-configs/ /
9191

92+
# HACK for codespell path change in trixie
93+
RUN mkdir -p /usr/share/codespell \
94+
&& ln -s /usr/lib/python3/dist-packages/codespell_lib/data/dictionary.txt /usr/share/codespell/dictionary.txt
95+
9296
RUN echo "**** create developer user and make our folders ****" \
9397
&& useradd -u 1000 -U -d /config -s /bin/false developer \
9498
&& usermod -G users developer \

0 commit comments

Comments
 (0)