From 46de5b88a1d201cb5ac2c8120b7070763fbb4f64 Mon Sep 17 00:00:00 2001 From: Max Regan Date: Mon, 2 Dec 2019 05:28:02 +0000 Subject: [PATCH] Update 'Dockerfile' --- Dockerfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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