2018-06-07 15:56:22 +00:00
|
|
|
FROM exherbo/exherbo-x86_64-pc-linux-gnu-base
|
2016-08-12 15:33:54 +00:00
|
|
|
MAINTAINER Julian Ospald <hasufell@posteo.de>
|
|
|
|
|
2018-06-07 15:56:22 +00:00
|
|
|
ENV PALUDIS_DO_NOTHING_SANDBOXY=1
|
|
|
|
RUN echo "export PALUDIS_DO_NOTHING_SANDBOXY=1" >> /etc/profile
|
|
|
|
|
2016-08-12 15:33:54 +00:00
|
|
|
# copy hooks
|
2018-06-07 15:56:22 +00:00
|
|
|
COPY ./config/paludis /etc/paludis
|
2016-08-12 15:33:54 +00:00
|
|
|
|
|
|
|
# This one should be present by running the build.sh script
|
2018-06-07 15:56:22 +00:00
|
|
|
COPY build.sh /
|
|
|
|
RUN chmod +x /build.sh && /build.sh
|
|
|
|
RUN rm /build.sh
|
2016-08-12 15:33:54 +00:00
|
|
|
|
|
|
|
# update etc files... hope this doesn't screw up
|
|
|
|
RUN eclectic config accept-all
|
|
|
|
|