mirror of
https://github.com/oldnick85/i2pd_yggdrasil_docker.git
synced 2025-11-29 03:23:13 +01:00
11 lines
318 B
Bash
11 lines
318 B
Bash
#!/bin/bash
|
|
TAG_VERSION=$(git describe --tags || echo "unknown")
|
|
docker build \
|
|
--build-arg UBUNTU_VERSION=22.04 \
|
|
--build-arg I2PD_VERSION=2.48.0 \
|
|
--build-arg I2PD_COMPILER=gcc \
|
|
--build-arg YGGDRASIL_VERSION=v0.4.7 \
|
|
--tag i2pd_yggdrasil:${TAG_VERSION} \
|
|
--tag i2pd_yggdrasil:latest \
|
|
.
|