This repository has been archived on 2024-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
stagex/packages/go/Dockerfile

78 lines
2.4 KiB
Docker
Raw Normal View History

FROM ocirep/busybox:latest as busybox
2023-11-09 10:12:11 +00:00
FROM ocirep/bash:latest as bash
FROM ocirep/glibc:latest as glibc
FROM library/gcc@sha256:ca38f292fe1ad0933f0122a657f9c644ed1f0a9e1aa336abcc83d420ad487e28 as gcc
2023-11-02 12:12:38 +00:00
FROM gcc as stage1
2023-11-09 10:12:11 +00:00
ENV GO_SITE=https://dl.google.com/go
ENV GO_VERSION=1.4-bootstrap-20171003
ENV GO_HASH=f4ff5b5eb3a3cae1c993723f3eab519c5bae18866b5e5f96fe1102f0cb5c3e52
2023-11-02 12:12:38 +00:00
ENV GOOS=linux
ENV GOROOT_FINAL="/home/user/go-stage1"
2023-11-02 12:12:38 +00:00
ENV GOROOT="${GOROOT_FINAL}"
ENV GOBIN="${GOROOT_FINAL}/bin"
ENV CGO_ENABLED=0
2023-11-09 10:12:11 +00:00
RUN wget ${GO_SITE}/go${GO_VERSION}.tar.gz
RUN echo "${GO_HASH} go${GO_VERSION}.tar.gz" | sha256sum -c
RUN tar -xzf go${GO_VERSION}.tar.gz
RUN cd go/src \
&& ./make.bash
RUN cd go \
&& mkdir -p ${GOROOT_FINAL} \
&& cp -R bin lib pkg src ${GOROOT_FINAL}
2023-11-02 12:12:38 +00:00
2023-11-09 10:12:11 +00:00
FROM busybox as stage2
COPY --from=stage1 /home/user/go-stage1 go-stage1
2023-11-09 10:12:11 +00:00
COPY --from=bash bash /bin/bash
COPY --from=glibc . /lib
2023-11-09 10:12:11 +00:00
ENV GO_VERSION=1.19.11
ENV GO_HASH=e25c9ab72d811142b7f41ff6da5165fec2d1be5feec3ef2c66bc0bdecb431489
ENV GOROOT_BOOTSTRAP=/home/user/go-stage1
2023-11-09 10:12:11 +00:00
ENV GO_SITE=https://storage.googleapis.com/golang
2023-11-02 12:12:38 +00:00
ENV GOOS=linux
ENV GOROOT_FINAL=/home/user/go-stage2
2023-11-02 12:12:38 +00:00
ENV GOROOT="${GOROOT_FINAL}"
ENV GOBIN="${GOROOT_FINAL}/bin"
ENV GO11MODULE=off
ENV CGO_ENABLED=0
2023-11-09 10:12:11 +00:00
RUN wget ${GO_SITE}/go${GO_VERSION}.src.tar.gz
RUN echo "${GO_HASH} go${GO_VERSION}.src.tar.gz" | sha256sum -c
RUN tar -xvzf go${GO_VERSION}.src.tar.gz
RUN cd go/src \
&& /bin/bash make.bash
RUN cd go \
&& mkdir -p ${GOROOT_FINAL} \
&& cp -R bin lib pkg src ${GOROOT_FINAL}
FROM busybox as stage3
COPY --from=stage2 /home/user/go-stage2 go-stage2
2023-11-09 10:12:11 +00:00
COPY --from=bash bash /bin/bash
COPY --from=glibc . /lib
2023-11-09 10:12:11 +00:00
ENV GO_VERSION=1.21.4
ENV GO_HASH=47b26a83d2b65a3c1c1bcace273b69bee49a7a7b5168a7604ded3d26a37bd787
ENV GOROOT_BOOTSTRAP=/home/user/go-stage2
2023-11-09 10:12:11 +00:00
ENV GO_SITE=https://storage.googleapis.com/golang
2023-11-02 12:12:38 +00:00
ENV GOOS=linux
ENV GOPROXY=off
ENV GOTOOLCHAIN=local
ENV GOFLAGS=-mod=vendor
ENV GOROOT_FINAL="/lib/go"
ENV GOROOT=/home/user/go-stage2
2023-11-02 12:12:38 +00:00
ENV GOBIN="${GOROOT_FINAL}/bin"
ENV GO11MODULE=on
ENV CGO_ENABLED=0
2023-11-09 10:12:11 +00:00
RUN wget ${GO_SITE}/go${GO_VERSION}.src.tar.gz
RUN echo "${GO_HASH} go${GO_VERSION}.src.tar.gz" | sha256sum -c
RUN tar -xvzf go${GO_VERSION}.src.tar.gz
RUN cd go/src \
&& /bin/bash make.bash
2023-11-09 10:12:11 +00:00
RUN cd go \
&& mkdir -p ../go-stage3 \
&& cp -R bin lib pkg src ../go-stage3
2023-11-02 12:12:38 +00:00
FROM scratch
COPY --from=stage3 /home/user/go-stage3 /
2023-11-09 10:12:11 +00:00
USER 100:100
ENTRYPOINT ["/bin/go"]
CMD ["version"]