From 4d13690964de473fc5e52d76a3b209d992d8cca8 Mon Sep 17 00:00:00 2001 From: Jeffrey Hilaire Date: Fri, 20 Dec 2024 21:19:04 +0000 Subject: [PATCH] Allow users of this repository as a submodule to override the foundry version to use --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e240985..1cc416d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ # Use fixed foundry image +ARG FOUNDRY_VERSION=nightly-3fa02706ca732c994715ba42d923605692062375 -FROM ghcr.io/foundry-rs/foundry:nightly-4a8c7d0e26a1befa526222e22737740f80a7f1c5 +FROM ghcr.io/foundry-rs/foundry:${FOUNDRY_VERSION} # Copy our source code into the container WORKDIR /app