Serverless plugin image updates?

Are there any plans to keep the Codefresh serverless plugin container (codefresh/serverless on Dockerhub) up to date with the Serverless Framework releases?

This is a minor quibble, as it is quite easy to wrap the 1.35 for your own needs. Here’s our Dockerfile for instance:

FROM codefresh/serverless:1.35.0
RUN apk add --no-cache curl ca-certificates jq
ARG SERVERLESS_VER
ENV SERVERLESS_VER ${{SLS_VER}}
RUN echo “Building with serverless version: ${{SLS_VER}}”
RUN yarn global add serverless@${{SLS_VER}}
RUN apk add --no-cache --virtual .build-deps g++ python3-dev libffi-dev openssl-dev && apk add --no-cache --update python3 && pip3 install --upgrade pip setuptools
RUN pip3 install awscli

Which works great if you want to pre-bake installing Serverless plugins as well.

Yes we do want to keep it up to date. The image is actually open source :slight_smile:

So you can quickly open a PR if you see that we miss a version bump that you need.