Skip to content

Commit

Permalink
Merge pull request #266 from tomdee/makefile
Browse files Browse the repository at this point in the history
Clean up Makefile
  • Loading branch information
caseydavenport authored Jun 8, 2018
2 parents a04d995 + 514782d commit b0fa8d5
Show file tree
Hide file tree
Showing 9 changed files with 228 additions and 249 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
build/
dist/
bin/
*.tar
*.created
*.coverage
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.amd64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017 Tigera, Inc
# Copyright 2015-2018 Tigera, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -14,5 +14,5 @@
FROM amd64/alpine:3.7
LABEL maintainer "Casey Davenport <[email protected]>"

ADD dist/kube-controllers-linux-amd64 /usr/bin/kube-controllers
ADD bin/kube-controllers-linux-amd64 /usr/bin/kube-controllers
ENTRYPOINT ["/usr/bin/kube-controllers"]
4 changes: 2 additions & 2 deletions Dockerfile.arm64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017 Tigera, Inc
# Copyright 2015-2018 Tigera, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -14,5 +14,5 @@
FROM arm64v8/alpine:3.7
LABEL maintainer "Casey Davenport <[email protected]>"

ADD dist/kube-controllers-linux-amd64 /usr/bin/kube-controllers
ADD bin/kube-controllers-linux-amd64 /usr/bin/kube-controllers
ENTRYPOINT ["/usr/bin/kube-controllers"]
4 changes: 2 additions & 2 deletions Dockerfile.ppc64le
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017 Tigera, Inc
# Copyright 2015-2018 Tigera, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -14,5 +14,5 @@
FROM ppc64le/alpine:3.7
LABEL maintainer "Casey Davenport <[email protected]>"

ADD dist/kube-controllers-linux-ppc64le /usr/bin/kube-controllers
ADD bin/kube-controllers-linux-ppc64le /usr/bin/kube-controllers
ENTRYPOINT ["/usr/bin/kube-controllers"]
4 changes: 2 additions & 2 deletions Dockerfile.s390x
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2017 Tigera, Inc
# Copyright 2015-2018 Tigera, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -14,5 +14,5 @@
FROM s390x/alpine:3.7
LABEL maintainer "LoZ Open Source Ecosystem (https://www.ibm.com/developerworks/community/groups/community/lozopensource)"

ADD dist/kube-controllers-linux-s390x /usr/bin/kube-controllers
ADD bin/kube-controllers-linux-s390x /usr/bin/kube-controllers
ENTRYPOINT ["/usr/bin/kube-controllers"]
Loading

0 comments on commit b0fa8d5

Please sign in to comment.