first attempts

This commit is contained in:
2026-01-18 19:03:38 +01:00
commit 93da0b117e
6 changed files with 1533 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
.PHONY: build run clean
IMAGE_NAME := opencode
IMAGE_TAG := latest
MCP_SERVER := http://localhost:8080
build:
docker build --build-arg MCP_SERVER=$(MCP_SERVER) -t $(IMAGE_NAME):$(IMAGE_TAG) .
run:
docker run -it --rm $(IMAGE_NAME):$(IMAGE_TAG) bash
clean:
docker rmi $(IMAGE_NAME):$(IMAGE_TAG) || true