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.