diff --git a/Dockerfile b/Dockerfile index c365763..3f3fe2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ FROM ruby:alpine LABEL "maintainer"="bpicode" -LABEL "com.github.actions.name"="fpm" +LABEL "com.github.actions.name"="github-action-fpm" LABEL "com.github.actions.description"="Build packages for multiple platforms using github.com/jordansissel/fpm" LABEL "com.github.actions.icon"="package" LABEL "com.github.actions.color"="green" -RUN apk add build-base -RUN apk add tar -RUN apk add zip +RUN apk --no-cache add build-base +RUN apk --no-cache add tar +RUN apk --no-cache add zip RUN gem install --no-document fpm -v 1.11.0 COPY entrypoint.sh /entrypoint.sh