2 Commits

Author SHA1 Message Date
ead32f72f8 Add MCR registry tagging and push target to Makefile
Add MCR variable. Replace local mcias:VERSION tags with MCR registry
URL. Remove :latest tag. Add push target.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 14:32:21 -07:00
d7d80c0f25 Bump flake.nix version to match latest tag
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 02:16:34 -07:00
2 changed files with 7 additions and 3 deletions

View File

@@ -20,6 +20,7 @@
# Variables
# ---------------------------------------------------------------------------
MODULE := git.wntrmute.dev/mc/mcias
MCR := mcr.svc.mcp.metacircular.net:8443
BINARIES := mciassrv mciasctl mciasdb mciasgrpcctl
BIN_DIR := bin
MAN_DIR := man/man1
@@ -163,9 +164,12 @@ dist: man
# ---------------------------------------------------------------------------
# docker — build the Docker image
# ---------------------------------------------------------------------------
.PHONY: docker
.PHONY: docker push
docker:
docker build --force-rm -t mcias:$(VERSION) -t mcias:latest .
docker build --force-rm -t $(MCR)/mcias:$(VERSION) .
push: docker
docker push $(MCR)/mcias:$(VERSION)
# ---------------------------------------------------------------------------
# docker-clean — remove local mcias Docker images

View File

@@ -10,7 +10,7 @@
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
version = "1.7.0";
version = "1.8.0";
in
{
packages.${system} = {