-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathDockerfile.base
More file actions
35 lines (31 loc) · 961 Bytes
/
Copy pathDockerfile.base
File metadata and controls
35 lines (31 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
# Dockerfile for openwrt:base
#
FROM debian:jessie
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apt-get update \
&& apt-get install -y build-essential \
ccache \
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"]