Skip to content

Commit

Permalink
Use alpine 3.9 for building Docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
dhui committed Feb 19, 2019
1 parent 0f8263d commit f213007
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.11-alpine3.8 AS downloader
FROM golang:1.11-alpine3.9 AS downloader
ARG VERSION

RUN apk add --no-cache git gcc musl-dev
Expand All @@ -13,7 +13,7 @@ ENV SOURCES="file go_bindata github aws_s3 google_cloud_storage"

RUN go build -a -o build/migrate.linux-386 -ldflags="-X main.Version=${VERSION}" -tags "$DATABASES $SOURCES" ./cmd/migrate

FROM alpine:3.8
FROM alpine:3.9

RUN apk add --no-cache ca-certificates

Expand Down

0 comments on commit f213007

Please sign in to comment.