mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
10 lines
262 B
Docker
10 lines
262 B
Docker
ARG GO_VERSION=1.21
|
|
|
|
FROM golang:${GO_VERSION}-alpine
|
|
|
|
# ENV GOPROXY https://goproxy.cn,direct
|
|
|
|
# RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
|
|
RUN apk add --no-cache gcc musl-dev linux-headers git ca-certificates openssl-dev
|