From 2d263100c43e880eab89f224097544b99a575e95 Mon Sep 17 00:00:00 2001 From: daijro Date: Thu, 28 Nov 2024 21:31:36 -0600 Subject: [PATCH] Dockerfile: Fix rust issues #108 --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 76c913b..dcf5310 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,11 +12,14 @@ RUN apt-get update && apt-get install -y \ # Python python3 python3-dev python3-pip \ # Camoufox build system tools - git p7zip-full golang-go aria2 \ + git p7zip-full golang-go aria2 curl \ # CA certificates ca-certificates \ && update-ca-certificates +RUN curl https://sh.rustup.rs -sSf | bash -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" + # Fetch Firefox & apply initial patches RUN make setup-minimal && \ make mozbootstrap && \