diff --git a/cli/Dockerfile b/cli/Dockerfile index a211893..3c01c03 100644 --- a/cli/Dockerfile +++ b/cli/Dockerfile @@ -1,6 +1,6 @@ -FROM node:16-alpine +FROM node:22-alpine -LABEL version="1.0.3" +LABEL version="1.0.4" LABEL repository="http://github.com/netlify/actions" LABEL homepage="http://github.com/netlify/actions/netlify" LABEL maintainer="Netlify" @@ -9,6 +9,9 @@ LABEL "com.github.actions.description"="Wraps the Netlify CLI to enable common N LABEL "com.github.actions.icon"="cloud" LABEL "com.github.actions.color"="blue" +# Install bash and other required dependencies +RUN apk add --no-cache bash + RUN npm install -g netlify-cli COPY entrypoint.sh /entrypoint.sh