Update Docker image to use Alpine 3.10

This commit is contained in:
Dale Hui 2019-07-11 23:22:30 -07:00
parent ff1977cbd4
commit bb99610517
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.12-alpine3.9 AS downloader
FROM golang:1.12-alpine3.10 AS downloader
ARG VERSION
RUN apk add --no-cache git gcc musl-dev
@ -13,7 +13,7 @@ ENV SOURCES="file go_bindata github github_ee aws_s3 google_cloud_storage godoc_
RUN go build -a -o build/migrate.linux-386 -ldflags="-X main.Version=${VERSION}" -tags "$DATABASES $SOURCES" ./cmd/migrate
FROM alpine:3.9
FROM alpine:3.10
RUN apk add --no-cache ca-certificates