mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
clair
Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
parent
9306c0c66e
commit
3084f2436e
25
clair/Dockerfile
Normal file
25
clair/Dockerfile
Normal file
|
@ -0,0 +1,25 @@
|
|||
FROM alpine:latest
|
||||
|
||||
RUN apk --no-cache add \
|
||||
ca-certificates
|
||||
|
||||
ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
||||
ENV GOPATH /go
|
||||
|
||||
RUN buildDeps=' \
|
||||
go \
|
||||
git \
|
||||
gcc \
|
||||
g++ \
|
||||
libc-dev \
|
||||
libgcc \
|
||||
' \
|
||||
set -x \
|
||||
&& apk --no-cache add $buildDeps \
|
||||
&& go get github.com/coreos/clair/cmd/clair \
|
||||
&& mv /go/bin/clair /usr/bin/clair \
|
||||
&& apk del $buildDeps \
|
||||
&& rm -rf /go \
|
||||
&& echo "Build complete."
|
||||
|
||||
ENTRYPOINT [ "clair" ]
|
Loading…
Reference in New Issue
Block a user