Skip to content

Commit 7b31ed4

Browse files
Govinda-FichtnerStefanScherer
authored andcommitted
add support for building first ARM debian package
Signed-off-by: Govinda Fichtner <govinda.fichtner@googlemail.com>
1 parent 5ee4ad1 commit 7b31ed4

File tree

30 files changed

+69
-38
lines changed

30 files changed

+69
-38
lines changed

contrib/builder/deb/README.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# `dockercore/builder-deb`
2+
3+
This image's tags contain the dependencies for building Docker `.deb`s for each of the Debian-based platforms Docker targets.
4+
5+
To add new tags, see [`contrib/builder/deb/amd64` in https://github.com/docker/docker](https://github.com/docker/docker/tree/master/contrib/builder/deb/amd64), specifically the `generate.sh` script, whose usage is described in a comment at the top of the file.

contrib/builder/deb/debian-jessie/Dockerfile renamed to contrib/builder/deb/amd64/debian-jessie/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/generate.sh"!
2+
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
33
#
44

55
FROM debian:jessie

contrib/builder/deb/debian-stretch/Dockerfile renamed to contrib/builder/deb/amd64/debian-stretch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/generate.sh"!
2+
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
33
#
44

55
FROM debian:stretch

contrib/builder/deb/debian-wheezy/Dockerfile renamed to contrib/builder/deb/amd64/debian-wheezy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/generate.sh"!
2+
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
33
#
44

55
FROM debian:wheezy-backports
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ for version in "${versions[@]}"; do
3333
echo "$version -> FROM $from"
3434
cat > "$version/Dockerfile" <<-EOF
3535
#
36-
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/generate.sh"!
36+
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
3737
#
3838
3939
FROM $from
@@ -110,7 +110,7 @@ for version in "${versions[@]}"; do
110110

111111
echo >> "$version/Dockerfile"
112112

113-
awk '$1 == "ENV" && $2 == "GO_VERSION" { print; exit }' ../../../Dockerfile >> "$version/Dockerfile"
113+
awk '$1 == "ENV" && $2 == "GO_VERSION" { print; exit }' ../../../../Dockerfile >> "$version/Dockerfile"
114114
echo 'RUN curl -fSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar xzC /usr/local' >> "$version/Dockerfile"
115115
echo 'ENV PATH $PATH:/usr/local/go/bin' >> "$version/Dockerfile"
116116

contrib/builder/deb/ubuntu-precise/Dockerfile renamed to contrib/builder/deb/amd64/ubuntu-precise/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/generate.sh"!
2+
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
33
#
44

55
FROM ubuntu:precise

contrib/builder/deb/ubuntu-trusty/Dockerfile renamed to contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/generate.sh"!
2+
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
33
#
44

55
FROM ubuntu:trusty

contrib/builder/deb/ubuntu-wily/Dockerfile renamed to contrib/builder/deb/amd64/ubuntu-wily/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/generate.sh"!
2+
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
33
#
44

55
FROM ubuntu:wily

0 commit comments

Comments
 (0)