explicitly target linux amd64

This commit is contained in:
Joachim Hill-Grannec 2022-08-23 09:31:37 -06:00
parent e07eb1399b
commit 98bb4e4ba4
No known key found for this signature in database
GPG Key ID: 4391E44ED5D6BB46
3 changed files with 4 additions and 36 deletions

View File

@ -2,6 +2,9 @@ kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
- name: test
@ -16,7 +19,7 @@ steps:
- name: build
image: golang:1.13
commands:
- go build -o build/drone-helm cmd/drone-helm/main.go
- GOOS=linux GOARCH=amd64 go build -o build/drone-helm cmd/drone-helm/main.go
- name: publish_linux_amd64
image: plugins/docker
settings:

View File

@ -1,8 +1,6 @@
FROM alpine/helm:3.8.1
MAINTAINER Joachim Hill-Grannec <joachim@pelo.tech>
RUN apk add libc6-compat
COPY build/drone-helm /bin/drone-helm
COPY assets/kubeconfig.tpl /root/.kube/config.tpl

View File

@ -1,33 +0,0 @@
# syntax=docker/dockerfile:1
## Build
FROM golang:1.13 AS build
WORKDIR /app
COPY go.mod ./
COPY go.sum ./
COPY cmd cmd
COPY internal internal
COPY assets assets
# test
RUN go test ./cmd/... ./internal/...
RUN go vet ./cmd/... ./internal/...
# Build binary
RUN go build -o build/drone-helm cmd/drone-helm/main.go
## Deploy
FROM alpine/helm:3.8.1
RUN apk add libc6-compat
# COPY build/drone-helm /bin/drone-helm
COPY --from=build /app/build/drone-helm /bin/drone-helm
COPY assets/kubeconfig.tpl /root/.kube/config.tpl
LABEL description="Helm 3 plugin for Drone 3"
LABEL base="alpine/helm"
ENTRYPOINT [ "/bin/drone-helm" ]