ccql/Dockerfile.test

12 строки
242 B
Docker

FROM golang:1.12.1
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/ccql
WORKDIR /go/src/github.com/github/ccql
CMD ["script/test"]