diff --git a/Dockerfile b/Dockerfile index 4c62f8b..01bc145 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,17 @@ FROM python:3.7-alpine LABEL "com.github.actions.name"="S3 Sync" -LABEL "com.github.actions.description"="Sync a directory to a AWS S3 repository" +LABEL "com.github.actions.description"="Sync a directory to an AWS S3 repository" LABEL "com.github.actions.icon"="refresh-cw" LABEL "com.github.actions.color"="green" -LABEL version="0.1.0" -LABEL "repository"="https://github.com/jakejarvis/s3-sync-action" -LABEL "homepage"="https://jarv.is/" -LABEL "maintainer"="Jake Jarvis " +LABEL version="0.1.1" +LABEL repository="https://github.com/jakejarvis/s3-sync-action" +LABEL homepage="https://jarv.is/" +LABEL maintainer="Jake Jarvis " # https://github.com/aws/aws-cli/blob/master/CHANGELOG.rst -ENV AWSCLI_VERSION='1.16.223' +ENV AWSCLI_VERSION='1.16.225' RUN pip install --quiet --no-cache-dir awscli==${AWSCLI_VERSION}