forked from SynoCommunity/spksrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
50 lines (44 loc) · 1.1 KB
/
Dockerfile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
FROM 32bit/debian:jessie
MAINTAINER SynoCommunity <https://synocommunity.com>
ENV LANG C.UTF-8
# Install required packages
RUN apt-get update && \
apt-get install -y automake \
bison \
build-essential \
check \
cmake \
curl \
cython \
debootstrap \
expect \
flex \
gettext \
git \
gperf \
imagemagick \
intltool \
libffi-dev \
libgc-dev \
libltdl-dev \
libssl-dev \
libunistring-dev \
lzip \
mercurial \
ncurses-dev \
pkg-config \
python3 \
subversion \
swig \
xmlto \
zlib1g-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Install setuptools, wheel and pip for Python3
RUN wget https://bootstrap.pypa.io/get-pip.py -O - | python3
# Install setuptools, pip, virtualenv, wheel and httpie for Python2
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