FROM golang:latest

RUN apt install -y make curl python3 && go install gotest.tools/gotestsum@latest

COPY . /source

WORKDIR /source

CMD ["make", "test"]