-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
nathan r. hruby
committed
Mar 31, 2020
1 parent
75a7697
commit 0066a1b
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.13.1-alpine AS build-env | ||
FROM golang:1.14.1-alpine AS build-env | ||
|
||
RUN apk add --update git gcc libc-dev | ||
RUN go get -u github.com/prometheus/promu | ||
|
@@ -9,7 +9,7 @@ COPY .promu.yml script_exporter.go go.mod go.sum /go/script_exporter/ | |
WORKDIR /go/script_exporter | ||
RUN promu build | ||
|
||
FROM alpine:3.8 | ||
FROM alpine:3.11 | ||
LABEL upstream="https://github.com/adhocteam/script_exporter" | ||
LABEL maintainer="[email protected]" | ||
RUN apk add --no-cache bash | ||
|