Skip to content

Commit

Permalink
Add wheezy Docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBiggerGuy committed Jul 9, 2018
1 parent 622c0a4 commit a8ad1da
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Dockerfile-jessie
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ FROM multiarch/debian-debootstrap:armhf-jessie
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update

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

# build dpes
RUN apt-get install -y --no-install-recommends \
Expand All @@ -15,5 +16,3 @@ RUN apt-get install -y --no-install-recommends \
# runtime deps
RUN apt-get install -y --no-install-recommends \
net-tools iproute2 tclx8.4 tcl8.6 tcllib tcl-tls itcl3

RUN apt-get install -y --no-install-recommends devscripts equivs
18 changes: 18 additions & 0 deletions Dockerfile-wheezy
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM multiarch/debian-debootstrap:armhf-wheezy

ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update

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

# build dpes
RUN apt-get install -y --no-install-recommends \
debhelper tcl8.5-dev autoconf python3-dev python3-venv libz-dev openssl

# runtime deps
RUN apt-get install -y --no-install-recommends \
net-tools iproute tclx8.4 tcl8.5 tcllib tcl-tls itcl3

0 comments on commit a8ad1da

Please sign in to comment.