diff options
author | Max Magorsch <max@magorsch.de> | 2019-08-31 17:34:30 +0200 |
---|---|---|
committer | Max Magorsch <max@magorsch.de> | 2019-08-31 17:34:30 +0200 |
commit | fd485310b909a0ad150bbfd223515266d4c2e805 (patch) | |
tree | c5d0a45ff759dd4a0076fcdb2f2bd05c88135b79 | |
parent | Fix eager loading in production (diff) | |
download | packages-5-fd485310b909a0ad150bbfd223515266d4c2e805.tar.gz packages-5-fd485310b909a0ad150bbfd223515266d4c2e805.tar.bz2 packages-5-fd485310b909a0ad150bbfd223515266d4c2e805.zip |
Migrate gentoo portage location to default /var/db/repos/gentoo
The default portage location has changed:
https://wiki.gentoo.org/wiki//usr/portage
and so has the location in the portage container:
https://github.com/gentoo/gentoo-docker-images/commit/7c0dfcc
Signed-off-by: Max Magorsch <max@magorsch.de>
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | config/initializers/kkuleomi_config.rb.dist | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ FROM gentoo/portage:latest as portage FROM gentoo/stage3-amd64 # Need a portage tree to build, use last nights. -COPY --from=portage /usr/portage /usr/portage +COPY --from=portage /var/db/repos/gentoo /var/db/repos/gentoo # Sandbox doesn't work well in docker. ENV FEATURES="-userpriv -usersandbox -sandbox" diff --git a/config/initializers/kkuleomi_config.rb.dist b/config/initializers/kkuleomi_config.rb.dist index d288581..dc0e79d 100644 --- a/config/initializers/kkuleomi_config.rb.dist +++ b/config/initializers/kkuleomi_config.rb.dist @@ -1,8 +1,8 @@ # The location of the repository used for the indexer -KKULEOMI_PORTDIR='/usr/portage' +KKULEOMI_PORTDIR='/var/db/repos/gentoo' # The location of the repository used for gathering runtime information -KKULEOMI_RUNTIME_PORTDIR='/usr/portage' +KKULEOMI_RUNTIME_PORTDIR='/var/db/repos/gentoo' # The first actual git commit # Set this to the second commit in the repo to avoid long changelog generation times |