ARG GOVERSION
FROM golang:${GOVERSION}

WORKDIR /app
COPY . .
RUN IN_CONTAINER=true go test -v ./...
