From 2f76cdd7a0e80f99a4f3b5c4f84002fb985a5f01 Mon Sep 17 00:00:00 2001 From: David Chase Date: Sun, 24 Aug 2025 21:42:35 -0400 Subject: [PATCH 1/4] fix: update Makefile for dotnet8-env --- dotnet8/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet8/Makefile b/dotnet8/Makefile index c44d48b4..f16cc1a0 100644 --- a/dotnet8/Makefile +++ b/dotnet8/Makefile @@ -8,7 +8,7 @@ all: dotnet8-env-img dotnet8-builder-img dotnet8-env-img: Dockerfile @echo === Building image $(REPO)/dotnet8-env:$(TAG) using context $(CURDIR) and dockerfile $< - docker build --platform=$(PLATFORMS) -t $(REPO)/dotnet8-env:$(TAG) -f $< . + docker buildx build --platform=$(PLATFORMS) -t $(REPO)/dotnet8-env:$(TAG) $(DOCKER_FLAGS) -f $< . dotnet8-builder-img: builder/Dockerfile @echo === Building image $(REPO)/dotnet8-builder:$(TAG) using context $(CURDIR) and dockerfile $< From b146de3876cd5b1b8cbabecc759acfcf3fa4b774 Mon Sep 17 00:00:00 2001 From: David Chase Date: Mon, 25 Aug 2025 07:48:13 -0400 Subject: [PATCH 2/4] fix: bump version for release --- dotnet8/envconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet8/envconfig.json b/dotnet8/envconfig.json index f140d5b9..08ee8c49 100644 --- a/dotnet8/envconfig.json +++ b/dotnet8/envconfig.json @@ -17,6 +17,6 @@ "runtimeVersion": "8.0.0", "shortDescription": "Fission Dotnet 8.0.0 runtime uses Kestrel to host the internal web server. Supports both single file compilation (--code) and project-based compilation (--src).", "status": "Stable", - "version": "1.2.0" + "version": "1.3.0" } ] From 6656af7ef20518dc5be19a32cff9254d8d7876a2 Mon Sep 17 00:00:00 2001 From: David Chase Date: Mon, 25 Aug 2025 09:19:43 -0400 Subject: [PATCH 3/4] fix: add missing reference to rule.mk file --- dotnet8/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotnet8/Makefile b/dotnet8/Makefile index f16cc1a0..ec4af831 100644 --- a/dotnet8/Makefile +++ b/dotnet8/Makefile @@ -1,5 +1,7 @@ PLATFORMS ?= linux/amd64 +-include ../rules.mk + REPO ?= fission TAG ?= latest From c8d0e852757658c12e656b201af6b580d21fb077 Mon Sep 17 00:00:00 2001 From: David Chase Date: Mon, 25 Aug 2025 09:20:30 -0400 Subject: [PATCH 4/4] fix: bump version again --- dotnet8/envconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet8/envconfig.json b/dotnet8/envconfig.json index 08ee8c49..405ed70c 100644 --- a/dotnet8/envconfig.json +++ b/dotnet8/envconfig.json @@ -17,6 +17,6 @@ "runtimeVersion": "8.0.0", "shortDescription": "Fission Dotnet 8.0.0 runtime uses Kestrel to host the internal web server. Supports both single file compilation (--code) and project-based compilation (--src).", "status": "Stable", - "version": "1.3.0" + "version": "1.4.0" } ]