From 97a2503a50590f9409bcd33f1c5928f4a3d9e65d Mon Sep 17 00:00:00 2001 From: Sergey Popov Date: Mon, 15 Jun 2026 09:36:04 +0300 Subject: [PATCH] Prevent building unneeded yggdrasil-mobile by setting explicitly what to build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 35eb0ce..bc61e9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM rust:1.95.0-trixie AS builder RUN apt -y update && apt -y install git RUN git clone https://github.com/Revertron/Yggdrasil-ng.git /app WORKDIR /app -RUN cargo build --release +RUN cargo build --release -p yggdrasil FROM debian:trixie AS result