From 993354e9e7f69bd96c75b9224bed89fe6d3b76a9 Mon Sep 17 00:00:00 2001 From: Andre Rosot Date: Sun, 20 Jan 2019 16:19:56 +1100 Subject: [PATCH] Introducing Dockerfile for arm architecture --- Dockerfile-arm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Dockerfile-arm diff --git a/Dockerfile-arm b/Dockerfile-arm new file mode 100644 index 0000000..6dfb4c6 --- /dev/null +++ b/Dockerfile-arm @@ -0,0 +1,15 @@ +FROM arm32v6/alpine +RUN apk -v --update add \ + python \ + py-pip \ + groff \ + less \ + mailcap \ + && \ + pip install --upgrade awscli==1.14.5 s3cmd==2.0.1 python-magic && \ + apk -v --purge del py-pip && \ + rm /var/cache/apk/* +VOLUME /root/.aws +VOLUME /project +WORKDIR /project +ENTRYPOINT ["aws"]