-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- moved all binaries to release, removed binaries from git, added doc…
…kerfile bootstrap
- Loading branch information
Showing
6 changed files
with
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM alpine:latest | ||
RUN apk update | ||
RUN apk --no-cache upgrade | ||
RUN apk --no-cache add unzip ca-certificates openssl | ||
WORKDIR /asnbuilder | ||
RUN wget https://github.com/ipcjk/asnbuilder/releases/download/0.1/release.tar.gz | ||
RUN tar xfz release.tar.gz --strip 1 | ||
RUN rm release.tar.gz | ||
RUN chmod 0755 /mlxsh/asnbuilder | ||
RUN chown root:root -R /asnbuilder | ||
MAINTAINER Joerg Kost <jk@ip-clear.de> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
env GOOS=linux GOARCH=amd64 go build -o bin/asnbuilder.linux main.go | ||
env GOOS=windows GOARCH=amd64 go build -o bin/asnbuilder.exe main.go | ||
env GOOS=darwin GOARCH=amd64 go build -o bin/asnbuilder.mac main.go | ||
mkdir release | ||
env GOOS=linux GOARCH=amd64 go build -o release/asnbuilder.linux main.go | ||
env GOOS=windows GOARCH=amd64 go build -o release/asnbuilder.exe main.go | ||
env GOOS=darwin GOARCH=amd64 go build -o release/asnbuilder.mac main.go |