-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
622c0a4
commit a8ad1da
Showing
2 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |