Intial project

This commit is contained in:
2020-10-04 18:14:24 -04:00
parent 3657995de4
commit 10571c76ff
8 changed files with 240 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM amazon/aws-cli:latest
LABEL "com.github.actions.name"="Zappa Deploy"
LABEL "com.github.actions.description"="Deploys a Zappa application to AWS"
LABEL "com.github.actions.icon"="package"
LABEL "com.github.actions.color"="blue"
LABEL repository="https://github.com/josephbmanley/zappa-deploy-action"
LABEL maintainer="Joseph Manley <joseph@cloudsumu.com>"
USER root
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]