diff options
author | Jesse Riemens <riemensjesse@gmail.com> | 2024-10-16 11:36:14 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-10-25 15:40:54 +0100 |
commit | 61d5e47f995d398fd8a8a8127ae3dca911ec61eb (patch) | |
tree | e3ae9d4b260f46bb88b4044c862a691e758c2acc | |
parent | b5f17d0334532a475eb05f6dc7e7e39187d2573e (diff) | |
download | poky-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/Dockerfile | 2 |
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 | ||
12 | FROM alpine:3.13.1 | 12 | FROM alpine:3.13.1 |
13 | 13 | ||
14 | RUN apk add --no-cache python3 | 14 | RUN apk add --no-cache python3 libgcc |
15 | 15 | ||
16 | COPY bin/bitbake-hashserv /opt/bbhashserv/bin/ | 16 | COPY bin/bitbake-hashserv /opt/bbhashserv/bin/ |
17 | COPY lib/hashserv /opt/bbhashserv/lib/hashserv/ | 17 | COPY lib/hashserv /opt/bbhashserv/lib/hashserv/ |