Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
FROM alpine:3.6
FROM alpine:latest
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't use latest because newer versions could have breaking changes.
Please, update for the specific version that you have tested.

RUN apk -v --no-cache add \
git \
less \
openssh-client \
py-pip \
python \
py3-pip \
python3 \
&& \
pip install --upgrade awsebcli
pip3 install --upgrade awsebcli --ignore-installed six
RUN git config --global --add safe.directory /project
VOLUME /root/.aws
VOLUME /project
WORKDIR /project
Expand Down