aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2019-07-18 17:53:49 +0200
committerUltrabug <ultrabug@gentoo.org>2019-07-18 17:53:49 +0200
commita396982e5cb668fd71183abd5a7e3a8355453aac (patch)
tree8aa72fd2c4a2418db1e850f703e9bc3b5cf291e0 /README.md
parentFix docker login (diff)
downloaddocker-images-a396982e5cb668fd71183abd5a7e3a8355453aac.tar.gz
docker-images-a396982e5cb668fd71183abd5a7e3a8355453aac.tar.bz2
docker-images-a396982e5cb668fd71183abd5a7e3a8355453aac.zip
migrate gentoo portage location to default /var/db/repos/gentoo (fix #69)fix/gentoo-portage-location
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