NEW: docker files

This commit is contained in:
xpk 2020-04-24 19:31:24 +08:00
parent a49025b660
commit 04bd3c25d1
Signed by: xpk
GPG Key ID: CD4FF6793F09AB86

View File

@ -0,0 +1,9 @@
FROM centos:8
ENV container docker
RUN yum -y install gcc make git python3 zlib-devel openssl-devel ncurses-devel libffi-devel sqlite-devel readline-devel bzip2-devel
RUN git clone https://github.com/aws/aws-elastic-beanstalk-cli-setup.git
RUN ./aws-elastic-beanstalk-cli-setup/scripts/bundled_installer
RUN pip install awscli
ENV PATH="/root/.ebcli-virtual-env/executables:$PATH"
CMD ["/bin/bash"]