intuit / cfn-deploy

A useful GitHub Action to help you deploy cloudformation templates
MIT License
15 stars 24 forks source link

Docker improvement suggestion #42

Open Gershon-A opened 1 year ago

Gershon-A commented 1 year ago

Hello, We can use the official amazon/aws-cli image. This is will significant improve the docker build stage:

FROM  amazon/aws-cli

LABEL version="1.0.0"

LABEL "maintainer"="Mridhul Pax <mridhuljospax@gmail.com>"
LABEL "repository"="https://github.com/intuit/cfn-deploy"

LABEL com.github.actions.name="Cloudformation Github Deploy"
LABEL com.github.actions.description="Cloudformation Github Deploy"
LABEL com.github.actions.icon="upload-cloud"
LABEL com.github.actions.color="orange"

ENV DEBIAN_FRONTEND noninteractive

COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]