From b60410276f8eea332fe3a944ce19cc535a301f00 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Tue, 7 Mar 2023 23:30:56 +0100 Subject: [PATCH] feat: absolute path run --- ci/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/src/main.rs b/ci/src/main.rs index 299b611..9adec3a 100644 --- a/ci/src/main.rs +++ b/ci/src/main.rs @@ -138,7 +138,7 @@ async fn main() -> eyre::Result<()> { .with_workdir("/app") .with_directory("/app", rust_builder.directory("/app/target").id().await?) .with_env_variable("LEPTOS_SITE_ADDRESS", "0.0.0.0:3000") - .with_entrypoint(vec!["./server/release/ssr_mode_axum"]); + .with_entrypoint(vec!["/app/server/release/ssr_mode_axum"]); prod.publish(format!("docker.io/kasperhermansen/bitebuds:{tag}")) .await?;