From 58c27e26b797b5168682ed49435d801f66fa85ad Mon Sep 17 00:00:00 2001 From: Teofil Nakov Date: Wed, 16 Oct 2024 21:34:52 -0600 Subject: [PATCH] update readme.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5d2b368..f83dc50 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ details on setting credentials, region, profile, etc. ``` r runtime_function <- "parity" runtime_path <- system.file("parity.R", package = "r2lambda") +renvlock_path <- system.file("renv.lock", package = "r2lambda") dependencies <- NULL # Might take a while, its building a docker image @@ -57,6 +58,7 @@ build_lambda( tag = "parity1", runtime_function = runtime_function, runtime_path = runtime_path, + renvlock_path = renvlock_path, dependencies = dependencies ) ```