From 96fc59f25e498b4ec4256e8671f1addae420c436 Mon Sep 17 00:00:00 2001 From: Ryan Gordon Date: Fri, 23 Feb 2024 11:58:22 +0000 Subject: [PATCH] fix(runtime): Update docker image to a more maintained one. This should unlock latest versions of rust --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 32ab689..e2b9812 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ // https://serverless.com/blog/writing-serverless-plugins/ // https://serverless.com/framework/docs/providers/aws/guide/plugins/ -// https://github.com/softprops/lambda-rust/ +// https://github.com/rust-serverless/lambda-rust const { spawnSync } = require("child_process"); const { homedir, platform } = require("os"); @@ -11,7 +11,7 @@ const AdmZip = require("adm-zip"); const { mkdirSync, writeFileSync, readFileSync } = require("fs"); const DEFAULT_DOCKER_TAG = "latest"; -const DEFAULT_DOCKER_IMAGE = "softprops/lambda-rust"; +const DEFAULT_DOCKER_IMAGE = "rustserverless/lambda-rust"; const NO_OUTPUT_CAPTURE = { stdio: ["ignore", process.stdout, process.stderr] }; const MUSL_PLATFORMS = ["darwin", "win32", "linux"];