blob: 676afcf671a1376ac8bcc3e868ed141cfeb16a95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
FROM ubuntu:14.04.3
RUN apt-get update && apt-get install -y \
git \
fakeroot \
build-essential \
ncurses-dev xz-utils \
kernel-package \
bc \
autoconf \
python \
pkg-config \
zlibc \
zlib1g \
zlib1g-dev \
libglib2.0-dev \
libtool \
flex \
bison
RUN echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo
RUN chmod 0440 /etc/sudoers.d/open-sudo
|