tor-router/fedora/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

20 lines
448 B
Docker

FROM fedora:20
MAINTAINER amitsaha.in@gmail.com
# Let's start with some basic stuff.
RUN yum -y clean all
RUN yum -y update
RUN yum install -y iptables ca-certificates lxc e2fsprogs
# Install Docker from Fedora repos
RUN yum -y install docker-io
# 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"]