mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-28 19:40:38 +00:00
21 lines
565 B
Docker
21 lines
565 B
Docker
FROM linuxkit/alpine:33063834cf72d563cd8703467836aaa2f2b5a300 AS mirror
|
|
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
|
RUN apk add --no-cache --initdb -p /out \
|
|
alpine-baselayout \
|
|
busybox \
|
|
dhcpcd \
|
|
musl
|
|
|
|
# Remove apk residuals
|
|
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
|
|
|
|
FROM scratch
|
|
ENTRYPOINT []
|
|
CMD []
|
|
WORKDIR /
|
|
COPY --from=mirror /out/ /
|
|
# put the config file in / because we bind mount /etc to handle resolv.conf symlinks
|
|
COPY /dhcpcd.conf /
|
|
COPY /usr/ /usr/
|
|
CMD ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf"]
|