forked from hashicorp/consul-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update pristing build setup for arm builds
Need to build a custom docker image for the pristine builds so it will contain the arm compilers. Then use it for the pristine builds.
- Loading branch information
Showing
2 changed files
with
20 additions
and
3 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,8 @@ | ||
### Used for pristine builds | ||
# | ||
ARG GOVERSION=latest | ||
FROM golang:${GOVERSION} | ||
LABEL maintainer "John Eikenberry <[email protected]>" | ||
|
||
RUN apt-get update && \ | ||
apt-get -y install gcc-arm-linux-gnueabi gcc-aarch64-linux-gnu |