-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (31 loc) · 708 Bytes
/
Dockerfile
File metadata and controls
33 lines (31 loc) · 708 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
# Must be run with --privileged flag
# Recommended to run the container with a volume mapped
# in order to easy exprort images built to "external" world
FROM debian:jessie
RUN apt-get update &&\
apt-get install -y \
vim \
git \
make \
live-build \
pbuilder \
devscripts \
python3-pystache \
squashfs-tools \
autoconf \
dpkg-dev \
syslinux \
genisoimage \
lsb-release \
fakechroot \
kernel-package \
libtool \
libglib2.0-dev \
libboost-filesystem-dev \
libapt-pkg-dev \
flex \
bison \
libperl-dev \
libnfnetlink-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR ~