-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
42 lines (39 loc) · 767 Bytes
/
Dockerfile
File metadata and controls
42 lines (39 loc) · 767 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
34
35
36
37
38
39
40
41
42
FROM resin/rpi-raspbian:stretch
MAINTAINER Daniel Santos <daniel.santos@fpf.br>
RUN [ "cross-build-start" ]
RUN apt-get update && apt-get install -y \
dh-virtualenv \
autoconf \
python3-venv \
python3 \
python3-setuptools \
python3-setuptools-git \
python3-dev \
build-essential \
ca-certificates \
curl \
imagemagick \
libbz2-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
libmagickcore-dev \
libmagickwand-dev \
libncurses-dev \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libxml2-dev \
libxslt-dev \
libyaml-dev \
zlib1g-dev \
git \
devscripts \
equivs \
wget \
openssh-client \
&& rm -rf /var/lib/apt/lists/*
RUN [ "cross-build-end" ]