aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaos <haos.engine@gmail.com>2015-03-18 08:09:49 +0100
committerChaos <haos.engine@gmail.com>2015-03-18 08:09:49 +0100
commit5cfcda652236baa6595086bc1e2e3731baca62af (patch)
tree74460d7d63218b0b48aebc6ecee8d840ff2211ad
parentportage Dockerfile depends on amd64 image (diff)
downloaddocker-images-5cfcda652236baa6595086bc1e2e3731baca62af.tar.gz
docker-images-5cfcda652236baa6595086bc1e2e3731baca62af.tar.bz2
docker-images-5cfcda652236baa6595086bc1e2e3731baca62af.zip
deleted portage Dockerfile. As suggested it will be added later on;
probably using docker volumes or with other menas of daily syncing
-rw-r--r--portage/Dockerfile13
1 files changed, 0 insertions, 13 deletions
diff --git a/portage/Dockerfile b/portage/Dockerfile
deleted file mode 100644
index d3845eb..0000000
--- a/portage/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM amd64:latest
-MAINTAINER Gentoo Container Team <containers@gentoo.org>
-
-ENV PORTAGE_TARBALL portage-latest.tar.xz
-
-ADD http://distfiles.gentoo.org/snapshots/$PORTAGE_TARBALL /
-RUN mkdir -p /usr && xzcat /$PORTAGE_TARBALL | tar -xf - -C /usr \
- && mkdir -p /usr/portage/{distfiles,metadata,packages} \
- && chown -R portage:portage /usr/portage \
- && echo "masters = gentoo" > /usr/portage/metadata/layout.conf \
- && eselect news read new \
- && env-update \
- && rm -f /$PORTAGE_TARBALL