i2pd: add initial image

This commit is contained in:
ace
2025-05-13 00:13:23 +03:00
parent f7b3aa3099
commit bf1db33bf9
2 changed files with 29 additions and 0 deletions

17
i2pd/Makefile Normal file
View File

@ -0,0 +1,17 @@
VERSION=2.56.0
BUILD=1
IMAGE=i2pd
REGISTRY=gitea.geekhome.org/ghp
.PHONY: build push all
build:
docker build $(NO_CACHE) \
--build-arg I2PD_VERSION=$(VERSION) \
--build-arg I2PD_BUILD=$(BUILD) \
-t $(REGISTRY)/$(IMAGE):$(VERSION)-$(BUILD) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)-$(BUILD)
all: build push