1
0
mirror of https://github.com/cusspvz/openwrt-builder.docker synced 2025-07-11 08:28:35 +00:00
José Moreira 33229fffaf add cache
2018-09-17 09:44:36 +01:00

14 lines
263 B
Docker
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM base
LABEL MAINTAINER "Jose Moreira <josemoreiravarzim@gmail.com>"
ARG VERSION
ARG TARGET
ARG INSTALL_SRC
RUN /bin/bash -c "$INSTALL_SRC"
# Cache packages feeds
RUN ./scripts/feeds update -a
ADD builder.sh /builder
RUN chmod 755 /builder
CMD ["/builder"]