From 3c29beb0d5b5f55fa13229b02c75434e27051466 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Fri, 19 May 2017 16:04:38 +0200 Subject: [PATCH] TASK: Finish docker --- Dockerfile | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index a41c982..7cf3352 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,8 @@ -FROM alpine:3.5 +FROM python:3 MAINTAINER Daniel Siepmann LABEL Description="This image should provide environment to lint neotags" Vendor="DanielSiepmann" Version="1.0" -RUN apk update && apk upgrade - # Install dependencies -RUN apk add python3 py-pip - -# Clean APK cache -RUN rm -rf /var/cache/apk/* - -# Install dependencies -RUN pip install pep8 neovim +RUN pip install --upgrade pip +RUN pip install --no-cache-dir pep8 neovim