1
0
mirror of https://github.com/alljoynsville/openwrt-builder synced 2025-06-06 15:36:24 +00:00

Update Dockerfile

This commit is contained in:
alljoynsville 2017-02-15 20:19:34 +02:00 committed by GitHub
parent 817d68079e
commit 94cb79a796

View File

@ -6,7 +6,10 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -qq update && \
apt-get clean && \
useradd -m openwrt && \
echo 'openwrt ALL=NOPASSWD: ALL' > /etc/sudoers.d/openwrt
RUN sudo -iu openwrt git clone git://git.openwrt.org/openwrt.git
RUN sudo -iu openwrt openwrt/scripts/feeds update && sudo -iu openwrt rm -rf tmp
USER openwrt
RUN cd /home/openwrt && \
git clone https://github.com/openwrt/openwrt.git && \
cd openwrt && \
openwrt/scripts/feeds update && \
rm -rf tmp
WORKDIR /home/openwrt/openwrt