fickit: include local pkg
This commit is contained in:
parent
bcbf5b35cf
commit
5d644fa366
17 changed files with 404 additions and 0 deletions
11
fickit-pkg/unbound/Dockerfile
Normal file
11
fickit-pkg/unbound/Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM alpine AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
unbound
|
||||
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
|
||||
RUN wget -O /out/etc/unbound/root.hints ftp://ftp.internic.net/domain/named.cache
|
||||
|
||||
FROM scratch
|
||||
COPY --from=mirror /out/ /
|
||||
COPY etc/unbound/ /etc/unbound
|
||||
Reference in a new issue