zappa-deploy-action/Dockerfile

17 lines
522 B
Docker
Raw Normal View History

2020-10-05 00:14:24 +02:00
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>"
RUN yum install python3 python3-pip -y
2020-10-05 00:18:07 +02:00
RUN pip3 install virtualenv
2020-10-05 00:18:07 +02:00
2020-10-05 00:14:24 +02:00
ADD entrypoint.sh /entrypoint.sh
2020-10-05 00:16:33 +02:00
RUN chmod +x /entrypoint.sh
2020-10-05 00:14:24 +02:00
ENTRYPOINT ["/entrypoint.sh"]