Skip to content

Commit a8ad1da

Browse files
committed
Add wheezy Docker file
1 parent 622c0a4 commit a8ad1da

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

Dockerfile-jessie

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ FROM multiarch/debian-debootstrap:armhf-jessie
33
ENV DEBIAN_FRONTEND noninteractive
44
RUN apt-get update
55

6-
# sensible-build.sh deps
6+
# sensible-build.sh deps and deb packing debs
77
RUN apt-get install -y --no-install-recommends \
88
git ca-certificates wget patch \
9-
build-essential debhelper dpkg-dev
9+
build-essential debhelper dpkg-dev \
10+
devscripts equivs
1011

1112
# build dpes
1213
RUN apt-get install -y --no-install-recommends \
@@ -15,5 +16,3 @@ RUN apt-get install -y --no-install-recommends \
1516
# runtime deps
1617
RUN apt-get install -y --no-install-recommends \
1718
net-tools iproute2 tclx8.4 tcl8.6 tcllib tcl-tls itcl3
18-
19-
RUN apt-get install -y --no-install-recommends devscripts equivs

Dockerfile-wheezy

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM multiarch/debian-debootstrap:armhf-wheezy
2+
3+
ENV DEBIAN_FRONTEND noninteractive
4+
RUN apt-get update
5+
6+
# sensible-build.sh deps and deb packing debs
7+
RUN apt-get install -y --no-install-recommends \
8+
git ca-certificates wget patch \
9+
build-essential debhelper dpkg-dev \
10+
devscripts equivs
11+
12+
# build dpes
13+
RUN apt-get install -y --no-install-recommends \
14+
debhelper tcl8.5-dev autoconf python3-dev python3-venv libz-dev openssl
15+
16+
# runtime deps
17+
RUN apt-get install -y --no-install-recommends \
18+
net-tools iproute tclx8.4 tcl8.5 tcllib tcl-tls itcl3

0 commit comments

Comments
 (0)