0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-11-21 14:20:40 +00:00

Version bump golang and alpine

This commit is contained in:
Jacob McCann 2018-02-07 12:12:21 -06:00
parent 3a672c7471
commit 2abd8229ab

View File

@ -1,14 +1,14 @@
# Docker image for the Drone Terraform plugin
#
# docker build -t jmccann/drone-terraform:latest .
FROM golang:1.8-alpine AS builder
FROM golang:1.9-alpine AS builder
COPY ./*.go ./src/
COPY ./vendor/ ./src/
RUN set -ex \
&& cd ./src \
&& CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo -o /go/bin/drone-terraform
FROM alpine:3.4
FROM alpine:3.7
RUN apk -U add \
ca-certificates \