summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Riemens <riemensjesse@gmail.com>2024-10-16 11:36:14 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-10-25 15:40:54 +0100
commit61d5e47f995d398fd8a8a8127ae3dca911ec61eb (patch)
treee3ae9d4b260f46bb88b4044c862a691e758c2acc
parentb5f17d0334532a475eb05f6dc7e7e39187d2573e (diff)
downloadpoky-61d5e47f995d398fd8a8a8127ae3dca911ec61eb.tar.gz
bitbake: contrib/hashserv/Dockerfile: Add libgcc to image for runtime dependency
Libgcc is required as a runtime dependency. Without it, we get the following error: OSError: Error loading shared library libgcc_s.so.1: No such file or directory (Bitbake rev: 95e61f3dacacb3a001d9f0e2db4c4a2960d96640) Signed-off-by: Jesse Riemens <riemensjesse@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/contrib/hashserv/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/contrib/hashserv/Dockerfile b/bitbake/contrib/hashserv/Dockerfile
index 74b4a3be1d..aec1f86fc9 100644
--- a/bitbake/contrib/hashserv/Dockerfile
+++ b/bitbake/contrib/hashserv/Dockerfile
@@ -11,7 +11,7 @@
11 11
12FROM alpine:3.13.1 12FROM alpine:3.13.1
13 13
14RUN apk add --no-cache python3 14RUN apk add --no-cache python3 libgcc
15 15
16COPY bin/bitbake-hashserv /opt/bbhashserv/bin/ 16COPY bin/bitbake-hashserv /opt/bbhashserv/bin/
17COPY lib/hashserv /opt/bbhashserv/lib/hashserv/ 17COPY lib/hashserv /opt/bbhashserv/lib/hashserv/