[PATCH 2/2] contrib: hashserv: Dockerfile: Update base image
Frieder Schrempf <[email protected]>
| Newsgroups | org.openembedded.lists.bitbake-devel |
|---|---|
| Message-ID | <[email protected]> |
From: Frieder Schrempf <[email protected]> Alpine 3.13 is out-of-date and doesn't provide a Python version that is comaptible with the current version of bitbake master. Fix this by upgrading the alpine base image and installing the missing websockets module. Signed-off-by: Frieder Schrempf <[email protected]> --- contrib/hashserv/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/hashserv/Dockerfile b/contrib/hashserv/Dockerfile index fe7e091ec..5c8b8dd11 100644 --- a/contrib/hashserv/Dockerfile +++ b/contrib/hashserv/Dockerfile @@ -9,9 +9,9 @@ # docker build -f contrib/hashserv/Dockerfile . # -FROM alpine:3.13.1 +FROM alpine:3.23 -RUN apk add --no-cache python3 libgcc +RUN apk add --no-cache python3 py3-websockets libgcc COPY bin/bitbake-hashserv /opt/bbhashserv/bin/ COPY lib/hashserv /opt/bbhashserv/lib/hashserv/ -- 2.54.0