FROM golang:alpine WORKDIR /app COPY . . RUN ls RUN apk add --no-cache git && go mod download CMD ["go", "test", "./tests"]