FROM golang:1.23-alpine RUN apk add --no-cache gcc musl-dev WORKDIR /work ENTRYPOINT ["sh", "-c", "cp -r /src/* . && go test -v -count=1 ./... 2>&1"]