From b6c10a8df5f9eb687a2e01c2a35c2167f37845c5 Mon Sep 17 00:00:00 2001 From: Darren Wurf Date: Sat, 8 Jul 2017 15:44:31 +1000 Subject: [PATCH] Use alpine as base image --- Dockerfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index d042824..a79b22f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,6 @@ -FROM ubuntu:14.04 +FROM node:alpine -RUN apt-get update && \ - apt-get install -y software-properties-common curl && \ - curl -sL https://deb.nodesource.com/setup | bash - && \ - apt-get install -y nodejs && \ - npm install -g tiddlywiki && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* +RUN npm install -g tiddlywiki # Setup wiki volume VOLUME /var/lib/tiddlywiki