dubdiff/docker/Dockerfile

52 lines
1.2 KiB
Docker
Raw Normal View History

2015-01-26 23:49:42 +01:00
# start with docker's base ubuntu image
FROM ubuntu:14.04
MAINTAINER Adam Brown "adamarthurryan@gmail.com"
# update package sources
# and get some basics
RUN apt-get -y update && apt-get -y install \
build-essential \
libssl-dev \
curl \
git
2015-01-26 23:49:42 +01:00
# install node.js
RUN curl -sL https://deb.nodesource.com/setup | bash -
RUN apt-get install -y nodejs
2015-02-15 21:15:48 +01:00
# install ruby
RUN apt-get install -y ruby1.9.1 ruby1.9.1-dev
# install wdiff
RUN apt-get install -y wdiff
# add a user
2015-02-28 19:44:36 +01:00
# and make them a sudoer
RUN useradd -ms /bin/bash docker && echo "docker:docker" | chpasswd && adduser docker sudo
2015-01-26 23:49:42 +01:00
# switch to the docker user
ENV HOME /home/docker
USER docker
2015-02-15 21:15:48 +01:00
# configure ruby gems to run from the home directory
ENV PATH $PATH:/home/docker/.gem/ruby/1.9.1/bin
# configure npm to run without sudo permissions
RUN echo 'prefix=${HOME}/.npm-packages' >> $HOME/.npmrc
2015-01-26 23:49:42 +01:00
ENV NPM_PACKAGES $HOME/.npm-packages
ENV NODE_PATH $NPM_PACKAGES/lib/node_modules:$NODE_PATH
2015-02-15 21:15:48 +01:00
ENV PATH $PATH:$NPM_PACKAGES/bin
ENV MANPATH $(manpath):$NPM_PACKAGES/share/man
2015-01-26 23:49:42 +01:00
# the home folder is a volume
# we can mount it to a data volume and then it will be shared with all instances
VOLUME /home/docker
# expose the ports
# EXPOSE 8000
# EXPOSE 9000
# EXPOSE 3000
# EXPOSE 35729