From f5f0c17d6ef97718c03f2c0a87c5d9b0bacbb1d8 Mon Sep 17 00:00:00 2001 From: Max Marze Date: Mon, 30 Dec 2024 12:41:42 -0500 Subject: [PATCH] Support Serverless Framework v4 (#97) Co-authored-by: Maciej Skierkowski --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2505df4..6876ce4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM nikolaik/python-nodejs:python3.10-nodejs18-slim +FROM nikolaik/python-nodejs:python3.12-nodejs20-slim LABEL version="1.0.0" LABEL repository="https://github.com/serverless/github-action" @@ -10,5 +10,5 @@ LABEL "com.github.actions.description"="Wraps the Serverless Framework to enable LABEL "com.github.actions.icon"="zap" LABEL "com.github.actions.color"="red" -RUN npm i -g serverless@3.x +RUN npm i -g serverless@4.x ENTRYPOINT ["serverless"]