diff --git a/Dockerfile-jessie b/Dockerfile-jessie index 986a3aa..1d3b396 100644 --- a/Dockerfile-jessie +++ b/Dockerfile-jessie @@ -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 \ @@ -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 \ No newline at end of file diff --git a/Dockerfile-wheezy b/Dockerfile-wheezy new file mode 100644 index 0000000..c40a053 --- /dev/null +++ b/Dockerfile-wheezy @@ -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