From 8297ea6382cce9fdd947b9de9a8fdf038eb8d764 Mon Sep 17 00:00:00 2001 From: oldnick85 Date: Thu, 2 Jan 2025 11:51:57 +0300 Subject: [PATCH] [add] use ygg 0.5.12 --- Dockerfile | 2 +- build_image.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fc7fc25..c5c1d70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG UBUNTU_VERSION=24.04 FROM ubuntu:${UBUNTU_VERSION} as builder_yggdrasil -ARG YGGDRASIL_VERSION=v0.5.11 +ARG YGGDRASIL_VERSION=v0.5.12 RUN DEBIAN_FRONTEND=noninteractive\ apt-get update &&\ apt-get -y upgrade diff --git a/build_image.sh b/build_image.sh index 7b3a9c3..135cda0 100644 --- a/build_image.sh +++ b/build_image.sh @@ -2,7 +2,7 @@ TAG_VERSION=$(git describe --tags || echo "unknown") docker build \ --build-arg UBUNTU_VERSION=24.04 \ - --build-arg YGGDRASIL_VERSION=v0.5.11 \ + --build-arg YGGDRASIL_VERSION=v0.5.12 \ --tag tor_yggdrasil:${TAG_VERSION} \ --tag tor_yggdrasil:latest \ .