diff options
author | Ultrabug <ultrabug@users.noreply.github.com> | 2019-07-19 10:36:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-19 10:36:47 +0200 |
commit | 7c0dfccbb82346d0217b4f0a25aaf083f0fb873f (patch) | |
tree | 8aa72fd2c4a2418db1e850f703e9bc3b5cf291e0 /README.md | |
parent | Fix docker login (diff) | |
download | docker-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.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |