Add Rust and Cargo to Dockerfile dependencies

This commit is contained in:
Alexandre
2025-12-27 08:25:01 +01:00
committed by GitHub
parent ae06f7809c
commit c526cacd60

View File

@@ -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