1
0
mirror of https://github.com/cusspvz/openwrt-builder.docker synced 2025-12-31 11:06:17 +00:00
2018-09-10 02:00:24 +01:00

12 lines
240 B
Docker
Raw 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 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"]