10 lines
156 B
Plaintext
10 lines
156 B
Plaintext
|
FROM golang:latest
|
||
|
|
||
|
RUN apt install -y make curl python3 && go install gotest.tools/gotestsum@latest
|
||
|
|
||
|
COPY . /source
|
||
|
|
||
|
WORKDIR /source
|
||
|
|
||
|
CMD ["make", "test"]
|