From 15995bde9228d86db58ba0df980f73952ee9fc94 Mon Sep 17 00:00:00 2001 From: Tor Hveem Date: Fri, 20 Dec 2013 12:40:13 +0100 Subject: [PATCH] Revert "Add Dockerfile" This reverts commit 74ada29e305ac46672ec87b99bf38091637da506. --- Dockerfile | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 1a1908b..0000000 --- a/Dockerfile +++ /dev/null @@ -1,36 +0,0 @@ -# -# Dockerfile for glowing-bear -# -# Will install required dependencies for bulding the project and serve it over HTTP using a simple python web server -# -# VERSION 0.0.1 - - -FROM ubuntu:12.04 -MAINTAINER Tor Hveem -ENV REFRESHED_AT 2013-12-17 - -RUN echo "deb-src http://archive.ubuntu.com/ubuntu precise main" >> /etc/apt/sources.list -RUN sed 's/main$/main universe/' -i /etc/apt/sources.list -RUN apt-get update -RUN apt-get upgrade -y - - -RUN apt-get -y install python-software-properties software-properties-common vim git - -# Bower and LESS compiler -RUN add-apt-repository -y ppa:chris-lea/node.js -RUN apt-get update -RUN apt-get install -y nodejs -RUN npm install less -g -RUN npm install bower -g - -RUN git clone https://github.com/cormier/glowing-bear - -RUN cd glowing-bear; bower --allow-root install - -EXPOSE 8000 -CMD cd glowing-bear; python -m SimpleHTTPServer - - -