From 1e3812591c7bbad0a1af7bb7237ddea145a55b83 Mon Sep 17 00:00:00 2001 From: Charlie Lye Date: Wed, 21 Feb 2024 17:22:34 +0000 Subject: [PATCH] Build nargo against Ubuntu 20 for better compatability --- noir/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noir/Dockerfile b/noir/Dockerfile index 000292e0a47..bd509450287 100644 --- a/noir/Dockerfile +++ b/noir/Dockerfile @@ -1,10 +1,10 @@ -FROM rust:bookworm +FROM rust:bullseye WORKDIR /usr/src/noir COPY . . RUN ./scripts/bootstrap_native.sh # When running the container, mount the users home directory to same location. -FROM ubuntu:lunar +FROM ubuntu:focal # Install Tini as nargo doesn't handle signals properly. # Install git as nargo needs it to clone. RUN apt-get update && apt-get install -y git tini && rm -rf /var/lib/apt/lists/* && apt-get clean