Merge pull request #37 from loganmarchione/master

Update Go and Alpine
This commit is contained in:
Michael de Wit 2020-04-30 08:25:10 +02:00 committed by GitHub
commit 8b63a0b1e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +1,11 @@
FROM golang:1.8-alpine as builder
FROM golang:1.14-alpine as builder
WORKDIR /go/src/drone-email
COPY . .
RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build
FROM alpine:3.4
FROM alpine:3.11
RUN apk add --no-cache ca-certificates