From 7b89805e7c97c659eec155c7a354d205a8f9a655 Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 22 Mar 2016 18:51:07 +0100 Subject: [PATCH] using alpine instead of ubuntu --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 79668a4..82f2f85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,12 @@ -FROM python +FROM alpine:3.3 MAINTAINER think@hotmail.de +RUN \ + apk add --no-cache python3 && \ + apk add --no-cache --virtual=build-dependencies wget ca-certificates && \ + wget "https://bootstrap.pypa.io/get-pip.py" -O /dev/stdout | python3 && \ + apk del build-dependencies + RUN pip install --no-cache-dir pyaml COPY bin /bin