diff --git a/Dockerfile b/Dockerfile index 000e48a..9b979f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,12 @@ FROM registry.lan/alpine:3.10 -RUN echo "hello" > /hello.txt \ No newline at end of file +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/* \ No newline at end of file