Disable GOPATH -- use newer go images
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Peter Stuifzand 2020-07-27 22:17:06 +02:00
parent 9ef3369389
commit 29023674fd
Signed by: peter
GPG Key ID: 374322D56E5209E8
2 changed files with 4 additions and 6 deletions

View File

@ -7,9 +7,8 @@ workspace:
steps:
- name: testing
image: golang:1.12-alpine
image: golang:1.14-alpine
environment:
GOPATH: /go
CGO_ENABLED: 0
GOOS: linux
GOARCH: amd64

View File

@ -1,11 +1,10 @@
# build stage
FROM golang:1.12.0-alpine3.7 AS build-env
FROM golang:1.14-alpine AS build-env
RUN apk --no-cache add git
ENV CGO_ENABLED=0
RUN go get p83.nl/go/ekster/...
RUN CGO_ENABLED=0 go get -a -ldflags '-extldflags "-static"' p83.nl/go/ekster/...
# final stage
FROM alpine:3.7
FROM alpine
RUN apk --no-cache add ca-certificates
RUN ["mkdir", "-p", "/opt/micropub"]
WORKDIR /opt/micropub