Clean up test suite #111

Closed
roysc wants to merge 7 commits from roy/qol-improvements into main
Showing only changes of commit 5fe9add0af - Show all commits

View File

@ -6,6 +6,10 @@ RUN apk add --update git build-base linux-headers
# Set working directory for the build
WORKDIR /go/src/github.com/cerc-io/laconicd
# Cache Go modules
COPY go.mod go.sum ./
RUN go mod download
# Add source files
COPY . .