imgme

Temporary image hosting for IRC
git clone https://git.woozle.org/neale/imgme.git

commit
0d92905
parent
8bcbf45
author
Neale Pickett
date
2025-04-25 10:07:15 -0600 MDT
Clean up build maybe
4 files changed,  +24, -7
A CHANGELOG.md
+9, -0
 1@@ -0,0 +1,9 @@
 2+# Changelog
 3+All notable changes to this project will be documented in this file.
 4+
 5+The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 6+and this project adheres to [Calendar Versioning](https://calver.org/).
 7+
 8+## [2025-04-25]
 9+## Added
10+- Now builds as a docker image
D Makefile
+0, -7
1@@ -1,7 +0,0 @@
2-TAG = git.woozle.org/neale/imgme
3-
4-oci:
5-	podman build --tag $(TAG) -f build/package/Containerfile .
6-
7-push: oci
8-	podman push $(TAG)
R build/package/Containerfile => build/Containerfile
+0, -0
A build/build.sh
+15, -0
 1@@ -0,0 +1,15 @@
 2+#! /bin/sh
 3+
 4+set -e
 5+
 6+cd $(dirname $0)/..
 7+
 8+target=imgme
 9+VERSION=$(cat CHANGELOG.md | awk -F '[][]' '/^## \[/ {print $2; exit}')
10+tag=git.woozle.org/neale/$target:$VERSION
11+
12+echo "==== Building $tag"
13+podman build \
14+    --tag $tag \
15+    -f build/Containerfile \
16+    .