Revert "Add Dockerfile"

This reverts commit 74ada29e305ac46672ec87b99bf38091637da506.
This commit is contained in:
Tor Hveem 2013-12-20 12:40:13 +01:00
parent 0a4ca02ad7
commit 15995bde92

View file

@ -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 <tor@hveem.no>
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