All of lore.kernel.org
 help / color / mirror / Atom feed
* [bitbake-devel][PATCH] contrib: Add Dockerfile for building hash server
@ 2021-02-14 19:36 Joshua Watt
  0 siblings, 0 replies; only message in thread
From: Joshua Watt @ 2021-02-14 19:36 UTC (permalink / raw)
  To: bitbake-devel; +Cc: ticotimo, Joshua Watt

Adds a Dockerfile for build the reference hash equivalence server in a
container

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 contrib/hashserv/Dockerfile | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 contrib/hashserv/Dockerfile

diff --git a/contrib/hashserv/Dockerfile b/contrib/hashserv/Dockerfile
new file mode 100644
index 00000000..d6fc728f
--- /dev/null
+++ b/contrib/hashserv/Dockerfile
@@ -0,0 +1,19 @@
+# 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"]
-- 
2.30.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-02-14 19:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-14 19:36 [bitbake-devel][PATCH] contrib: Add Dockerfile for building hash server Joshua Watt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.