mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 15:32:13 +02:00
Adds a Dockerfile for build the reference hash equivalence server in a container (Bitbake rev: d9a0a88db5888039bfbb6ce5129b43350f79b1c1) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
463 B
Docker
20 lines
463 B
Docker
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright (c) 2021 Joshua Watt <JPEWhacker@gmail.com>
|
|
#
|
|
# Dockerfile to build a bitbake hash equivalence server container
|
|
#
|
|
# From the root of the bitbake repository, run:
|
|
#
|
|
# docker build -f contrib/hashserv/Dockerfile .
|
|
#
|
|
|
|
FROM alpine:3.13.1
|
|
|
|
RUN apk add --no-cache python3
|
|
|
|
COPY bin/bitbake-hashserv /opt/bbhashserv/bin/
|
|
COPY lib/hashserv /opt/bbhashserv/lib/hashserv/
|
|
|
|
ENTRYPOINT ["/opt/bbhashserv/bin/bitbake-hashserv"]
|