Skip to content

Commit c619666

Browse files
committed
Simplify package installation
Based on feedback from mailing list [1] [1] https://lists.ozlabs.org/pipermail/patchwork/2021-December/007293.html Signed-off-by: Stephen Finucane <[email protected]>
1 parent dc66b83 commit c619666

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ RUN apt-get update --quiet && \
1414
curl \
1515
git \
1616
libexpat1 \
17-
$(apt-cache search --names-only 'libffi[0-9]+$' 2>/dev/null | awk '{print $1}') \
18-
$(apt-cache search --names-only 'libmpdec[0-9]+$' 2>/dev/null | awk '{print $1}') \
17+
libffi7 \
18+
libmpdec2 \
1919
libncursesw5 \
20-
$(apt-cache show libncursesw6 >/dev/null 2>&1 && echo libncursesw6 || true) \
21-
$(apt-cache search --names-only 'libreadline[0-9]+$' 2>/dev/null | awk '{print $1}') \
20+
libncursesw6 \
21+
libreadline5 \
2222
libsqlite3-0 \
2323
libssl1.1 \
2424
lzma \

0 commit comments

Comments
 (0)