github.com/artisanhe/tools@v1.0.1-0.20210607022958-19a8fef2eb04/runtime.Dockerfile (about) 1 FROM golang:1.10-alpine 2 3 RUN sed -i "s|http://dl-cdn.alpinelinux.org|http://mirrors.aliyun.com|g" /etc/apk/repositories 4 5 RUN apk add --no-cache --virtual .build-deps \ 6 curl bash vim 7 8 ENV GODEBUG=netdns=cgo 9 10 WORKDIR /etc/service