mirror of
https://github.com/golang/go
synced 2024-11-05 20:26:13 -07:00
21 lines
428 B
Docker
21 lines
428 B
Docker
|
FROM golang:latest
|
||
|
|
||
|
ENV SHELL /bin/bash
|
||
|
ENV HOME /root
|
||
|
WORKDIR $HOME
|
||
|
|
||
|
COPY . /go/src/golang.org/x/tools/cmd/getgo
|
||
|
|
||
|
RUN ( \
|
||
|
cd /go/src/golang.org/x/tools/cmd/getgo \
|
||
|
&& go build \
|
||
|
&& mv getgo /usr/local/bin/getgo \
|
||
|
)
|
||
|
|
||
|
# undo the adding of GOPATH to env for testing
|
||
|
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
||
|
ENV GOPATH ""
|
||
|
|
||
|
# delete /go and /usr/local/go for testing
|
||
|
RUN rm -rf /go /usr/local/go
|