OPNFV KVM4NFV CICD: Scripts for creating Rpms & Debians for Kernel, Qemu
[kvmfornfv.git] / ci / build_deb / Dockerfile
1 #!/bin/bash
2
3 FROM ubuntu:14.04.3
4 RUN apt-get update && apt-get install -y \
5   git \
6   fakeroot \
7   build-essential \
8   ncurses-dev xz-utils \
9   kernel-package \
10   bc \
11   autoconf \
12   python \
13   pkg-config \
14   zlibc \
15   zlib1g \
16   zlib1g-dev \
17   libglib2.0-dev \
18   libtool \
19   flex \
20   bison
21 RUN echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo
22 RUN chmod 0440 /etc/sudoers.d/open-sudo