first commit

This commit is contained in:
sparklyballs 2016-10-25 17:28:25 +01:00
commit e5abd5851b
2 changed files with 42 additions and 0 deletions

37
Dockerfile Normal file
View File

@ -0,0 +1,37 @@
FROM ubuntu:16.04
# package list as variable
ARG PACKAGE_LIST="\
bash \
bc \
bzip2 \
default-jre \
diffutils \
g++ \
gawk \
gcc \
git \
gperf \
gzip \
libc6-dev \
libncurses5-dev \
lzop \
make \
patch \
perl \
sed \
tar \
texinfo \
u-boot-tools \
unzip \
wget \
xfonts-utils \
xsltproc \
xz-utils \
zip"
# install packages
RUN \
apt-get update && \
apt-get install -y \
$PACKAGE_LIST

5
README.md Normal file
View File

@ -0,0 +1,5 @@
THIS IS NOT SOMETHING FOR PUBLIC USE
YOU HAVE BEEN WARNED !!!!
HERE BE DRAGONS