14 lines
560 B
Docker
14 lines
560 B
Docker
FROM golang:alpine
|
|
|
|
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
|
|
sed -i -e "s/v[0-9]\.[0-9]/edge/g" /etc/apk/repositories && \
|
|
apk --no-cache -U upgrade && apk --no-cache add ca-certificates yarn git curl dos2unix && \
|
|
go get github.com/GeertJohan/go.rice/rice && \
|
|
curl -fsSL -o /usr/local/bin/dep $( \
|
|
curl -s https://api.github.com/repos/golang/dep/releases/latest \
|
|
| grep "browser_download_url.*linux-amd64\"" \
|
|
| cut -d : -f 2,3 \
|
|
| tr -d \" \
|
|
) && \
|
|
chmod +x /usr/local/bin/dep
|