diff options
Diffstat (limited to 'builder/Dockerfile')
-rw-r--r-- | builder/Dockerfile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/builder/Dockerfile b/builder/Dockerfile index 898cfd3..7e257b7 100644 --- a/builder/Dockerfile +++ b/builder/Dockerfile @@ -1,9 +1,12 @@ FROM chsa/gbootstrap -RUN \ - cd /darklin/gentoo && git pull && \ - cd /darklin/darklin4 && git pull && \ - emerge --sync && eix-sync && \ - emerge -1 portage +# We do it now inside (git pull also may bring back un-necessary and potentialy problematic configs) +#RUN \ +# cd /darklin/gentoo && git pull && \ +# cd /darklin/darklin4 && git pull && \ +# emerge --sync && eix-sync && \ +# emerge -1 portage + +COPY files/ / -CMD ["/bin/bash", "/etc/portage/scripts/bootstrap/builder.sh"] +CMD ["/bin/bash", "/entrypoint.sh"] |