From 16e287f874b951fad52023627a7606a111c96dd2 Mon Sep 17 00:00:00 2001 From: Nicholas Farshidmehr Date: Fri, 19 Aug 2022 12:04:54 -0400 Subject: [PATCH] chore: use the official docker enarx image Signed-off-by: Nicholas Farshidmehr --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6ae17f0..81d6fd7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -78,7 +78,7 @@ static JOBS: Lazy> = Lazy::new(Default::default); // TODO: raise this when this is fixed: https://github.com/profianinc/benefice/issues/75 const READ_TIMEOUT: Duration = Duration::from_millis(500); const TOML_MAX: usize = 256 * 1024; // 256 KiB -const ENARX_DOCKER_IMAGE_TAG: &str = "enarx:0.6.3"; +const ENARX_DOCKER_IMAGE_TAG: &str = "enarx/enarx:0.6.3"; lazy_static! { static ref EXAMPLES: Vec<&'static str> = include_str!("../examples.txt")