1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-22 05:09:09 +02:00
dockerfiles/openwrt/Dockerfile
2016-08-02 10:23:13 +08:00

35 lines
920 B
Docker

#
# Dockerfile for openwrt
#
FROM debian:jessie
MAINTAINER kev <noreply@easypi.info>
RUN set -xe \
&& apt-get update \
&& apt-get install -y build-essential \
curl \
file \
gawk \
gettext \
git \
libncurses5-dev \
libssl-dev \
mercurial \
python \
subversion \
sudo \
tree \
unzip \
wget \
vim-tiny \
xsltproc \
zlib1g-dev \
&& useradd -m openwrt \
&& echo 'openwrt ALL=NOPASSWD: ALL' > /etc/sudoers.d/openwrt
USER openwrt
WORKDIR /home/openwrt
CMD ["bash"]