mirror of
https://github.com/securego/gosec.git
synced 2024-12-26 04:25:52 +00:00
Merge pull request #249 from andrewhsu/go
bump Dockerfile golang from 1.10 to 1.11
This commit is contained in:
commit
f9b41874b1
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
||||||
FROM golang:1.10.4-alpine3.8 as build
|
FROM golang:1.11.1-alpine3.8 as build
|
||||||
WORKDIR /go/src/github.com/securego/gosec
|
WORKDIR /go/src/github.com/securego/gosec
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN apk add -U git make
|
RUN apk add -U git make
|
||||||
RUN go get -u github.com/golang/dep/cmd/dep
|
RUN go get -u github.com/golang/dep/cmd/dep
|
||||||
RUN make
|
RUN make
|
||||||
|
|
||||||
FROM golang:1.10.4-alpine3.8
|
FROM golang:1.11.1-alpine3.8
|
||||||
RUN apk add -U gcc musl-dev
|
RUN apk add -U gcc musl-dev
|
||||||
COPY --from=build /go/src/github.com/securego/gosec/gosec /usr/local/bin/gosec
|
COPY --from=build /go/src/github.com/securego/gosec/gosec /usr/local/bin/gosec
|
||||||
ENTRYPOINT ["gosec"]
|
ENTRYPOINT ["gosec"]
|
||||||
|
|
Loading…
Reference in a new issue