From f3d579a0e965be32670df45f7b5646ac8f901331 Mon Sep 17 00:00:00 2001 From: Alex Thomae Date: Tue, 27 Aug 2019 10:09:54 +0200 Subject: [PATCH] Updates to latest alpine * updates to alpine:3.10 from alpine:3.6 * updates from python2 to python3 * ensures that pip doesn't create a cache directory --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6a7c975..c9dbad0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.6 -MAINTAINER Elementar Sistemas +FROM alpine:3.10 +label maintainer="Elementar Sistemas " -RUN apk --no-cache add bash py-pip && pip install awscli +RUN apk --no-cache add bash py3-pip && pip3 install --no-cache-dir awscli ADD watch /watch VOLUME /data