From 277b8103bb77de9687e8d739e43fc34da3d6620d Mon Sep 17 00:00:00 2001 From: Maciej Skierkowski Date: Thu, 11 Jul 2024 15:46:22 +0200 Subject: [PATCH] Support Serverless Framework v4 --- 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"]