updates packages installed

This commit is contained in:
Hyatt 2021-10-30 19:03:16 -05:00
parent 1175588b67
commit a471cb9d22
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

5
Jenkinsfile vendored
View File

@ -16,7 +16,7 @@ spec:
containers:
- name: compile
imagePullPolicy: Always
image: ${repository}/dockerhub/library/golang
image: ${repository}/dockerhub/library/golang:latest
tty: true
command:
- /bin/cat
@ -55,7 +55,8 @@ spec:
stage("Build go-temper") {
container("compile") {
sh """
apk add --no-cache libusb-dev gcc g++ upx
apt update
apt install libusb-dev gcc g++ upx-ucl
GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o go-temper ./cmd/go-temper
upx --brute go-temper
"""