-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85a359d
commit 533b0a0
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>" | ||
LABEL version="0.1.1" | ||
LABEL repository="https://github.com/jakejarvis/s3-sync-action" | ||
LABEL homepage="https://jarv.is/" | ||
LABEL maintainer="Jake Jarvis <[email protected]>" | ||
|
||
# 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} | ||
|
||
|