aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUltrabug <ultrabug@users.noreply.github.com>2019-07-19 10:36:47 +0200
committerGitHub <noreply@github.com>2019-07-19 10:36:47 +0200
commit7c0dfccbb82346d0217b4f0a25aaf083f0fb873f (patch)
tree8aa72fd2c4a2418db1e850f703e9bc3b5cf291e0 /README.md
parentFix docker login (diff)
downloaddocker-images-7c0dfccbb82346d0217b4f0a25aaf083f0fb873f.tar.gz
docker-images-7c0dfccbb82346d0217b4f0a25aaf083f0fb873f.tar.bz2
docker-images-7c0dfccbb82346d0217b4f0a25aaf083f0fb873f.zip
migrate gentoo portage location to default /var/db/repos/gentoo (fix #69) (#70)
as reported by @MeisterP on #69 our current portage volume image does not expose the portage tree in the default gentoo portage location which changed from /usr/portage to /var/db/repos/gentoo those defaults are reflected in /usr/share/portage/config/repos.conf as installed by newer portage
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5e24bf9..e5d0779 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ FROM gentoo/portage:latest as portage
FROM gentoo/stage3-amd64:latest
# copy the entire portage volume in
-COPY --from=portage /usr/portage /usr/portage
+COPY --from=portage /var/db/repos/gentoo /var/db/repos/gentoo
# continue with image build ...
RUN emerge -qv www-servers/apache # or whichever packages you need