From c526cacd6043af9af5695561acc74a1a673e25ff Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 27 Dec 2025 08:25:01 +0100 Subject: [PATCH] Add Rust and Cargo to Dockerfile dependencies --- ente/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ente/Dockerfile b/ente/Dockerfile index 0248b077b..0ee5ee212 100644 --- a/ente/Dockerfile +++ b/ente/Dockerfile @@ -13,7 +13,7 @@ FROM node:22-alpine AS web-builder ARG ENTE_WEB_TAG=main # ---- tools we need to build (git, yarn) -RUN apk add --no-cache git +RUN apk add --no-cache git rust cargo # ---- pull the web source WORKDIR /src