Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Diaoul committed Mar 19, 2015
1 parent 8c944fc commit 6d25e6e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .dockerignore
@@ -0,0 +1,10 @@
distrib
packages
native/*/work*
cross/*/work*
kernel/*/work*
spk/*/work*
toolchains/*/work*
local.mk
*.DS_Store
*~
43 changes: 43 additions & 0 deletions Dockerfile
@@ -0,0 +1,43 @@
FROM 32bit/debian:jessie
MAINTAINER SynoCommunity <https://synocommunity.com>

# Install required packages
RUN apt-get update && \
apt-get install -y automake \
bison \
build-essential \
check \
curl \
cython \
debootstrap \
expect \
flex \
gettext \
git \
gperf \
imagemagick \
intltool \
libffi-dev \
libgc-dev \
libltdl-dev \
libssl-dev \
libunistring-dev \
mercurial \
ncurses-dev \
pkg-config \
subversion \
swig \
xmlto \
zlib1g-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Install setuptools, pip, virtualenv and httpie
RUN wget https://bootstrap.pypa.io/ez_setup.py -O - | python
RUN wget https://bootstrap.pypa.io/get-pip.py -O - | python
RUN pip install virtualenv httpie

# Volume pointing to spksrc sources
VOLUME /spksrc

WORKDIR /spksrc

0 comments on commit 6d25e6e

Please sign in to comment.