dockerfiles/github-dev/Dockerfile
Jess Frazelle 6189677b24
fix github-dev
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-10-22 17:15:44 -04:00

24 lines
531 B
Docker

FROM golang:alpine
MAINTAINER Jessica Frazelle <jess@linux.com>
RUN apk add --no-cache \
bash \
ca-certificates \
curl \
gcc \
git \
gnupg \
jq \
make \
musl-dev
RUN go get golang.org/x/lint/golint
RUN go get honnef.co/go/tools/cmd/staticcheck
# TODO: remove this eventually
RUN go get golang.org/x/crypto/ssh/terminal
COPY upload-assets /usr/bin/upload-assets
COPY release-email-notification /usr/bin/release-email-notification
COPY gcloud-login /usr/bin/gcloud-login
COPY cleanup-pr-branch /usr/bin/cleanup-pr-branch