8f42dedef8
* Add GO111MODULE=off to build.sh * Use golang 1.16 * Update go version in README.md * Add missing GO111MODULE=off * Add missing GO111MODULE=off again * Use go1.16.3 explicitly * Use 1.16 for CI test * Update min go version * Use go 1.16.4
12 lines
246 B
Docker
12 lines
246 B
Docker
FROM golang:1.16.4
|
|
LABEL maintainer="github@github.com"
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y lsb-release
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY . /go/src/github.com/github/gh-ost
|
|
WORKDIR /go/src/github.com/github/gh-ost
|
|
|
|
CMD ["script/test"]
|