gh-ost/Dockerfile.test
2020-08-19 20:21:40 +02:00

12 lines
246 B
Docker

FROM golang:1.14.7
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"]