tor-router/Dockerfile
zachary ce7b24a56b Squashed 'dind/' content from commit 41bdbd4
git-subtree-dir: dind
git-subtree-split: 41bdbd41e834ea9727b505fc87d5f8ba2c211f22
2015-07-06 10:21:12 -04:00

23 lines
529 B
Docker

FROM ubuntu:14.04
MAINTAINER jerome.petazzoni@docker.com
# Let's start with some basic stuff.
RUN apt-get update -qq && apt-get install -qqy \
apt-transport-https \
ca-certificates \
curl \
lxc \
iptables
# Install Docker from Docker Inc. repositories.
RUN curl -sSL https://get.docker.com/ubuntu/ | sh
# Install the magic wrapper.
ADD ./wrapdocker /usr/local/bin/wrapdocker
RUN chmod +x /usr/local/bin/wrapdocker
# Define additional metadata for our image.
VOLUME /var/lib/docker
CMD ["wrapdocker"]