mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-05-07 12:51:31 +00:00
8 lines
213 B
Docker
8 lines
213 B
Docker
FROM golang:1.7-alpine
|
|
RUN apk update && apk add --no-cache build-base git
|
|
|
|
# Get linting tools
|
|
RUN go get -u github.com/golang/lint/golint
|
|
|
|
# Get the linting script and place in PATH
|
|
COPY lint.sh /usr/bin/lint.sh |