mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-03-31 17:31:05 +02:00
19 lines
362 B
Docker
19 lines
362 B
Docker
FROM golang:alpine
|
|
MAINTAINER Jessica Frazelle <jess@linux.com>
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
ca-certificates \
|
|
curl \
|
|
gcc \
|
|
git \
|
|
jq \
|
|
make \
|
|
musl-dev
|
|
|
|
RUN go get github.com/golang/lint/golint
|
|
RUN go get honnef.co/go/tools/cmd/staticcheck
|
|
|
|
COPY upload-assets /usr/bin/upload-assets
|
|
COPY release-email-notification /usr/bin/release-email-notification
|