From 9f7d13722778cfdb00ec8b940048dc75dbb61237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Str=C3=B6mbergson?= Date: Thu, 16 Mar 2023 16:23:48 +0100 Subject: [PATCH] Add podman pull target for tkey-builder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Joachim Strömbergson --- contrib/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/Makefile b/contrib/Makefile index bb6ed09..786a44c 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -2,6 +2,7 @@ all: @echo "Build targets: " @echo "build Build an image for building tools with Docker" @echo "run Run a shell using the above image with Docker" + @echo "podman-pull Pull in the podman tkey builder" @echo "podman-build Build an image with podman" @echo "podman-run Run a shell using above image with podman" @echo "podman-run-make Run the above image with podman and build the FPGA bitstream" @@ -12,6 +13,9 @@ build: run: docker run --rm --mount type=bind,source="`pwd`/../",target=/build -w /build -it tkey-builder /usr/bin/bash +podman-pull: + podman pull ghcr.io/tillitis/tkey-builder:1 + podman-build: podman build -t tkey-builder .