rename aws image to aws-eb-cli

This commit is contained in:
Mahmoud Zalt
2019-07-15 20:47:50 +02:00
parent c79d0671e2
commit 26184055c5
3 changed files with 1 additions and 1 deletions

1
aws-eb-cli/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
./ssh_keys

17
aws-eb-cli/Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM python:slim
LABEL maintainer="melchabcede@gmail.com"
RUN pip install --upgrade --no-cache-dir awsebcli
RUN apt-get -yqq update && apt-get -yqq install git-all
#NOTE: make sure ssh keys are added to ssh_keys folder
RUN mkdir root/tmp_ssh
COPY /ssh_keys/. /root/.ssh/
RUN cd /root/.ssh && chmod 600 * && chmod 644 *.pub
# Set default work directory
WORKDIR /var/www