You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line: aggregateID, _ := uuid.NewV4() works perfectly when building on my machine, but I receive the error ./main.go:51:17: assignment mismatch: 2 variables but 1 values when building with the following docker image:
FROM golang:latest as builder
WORKDIR /go/src/github.com/zachlefevre/project_hopper_backend/algorithmAPI
COPY . .
RUN go get -u github.com/golang/dep/cmd/dep
RUN dep init && dep ensure
Any help would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
Offhand it sounds like this may be an issue with dep getting an older version of satori. You may want to open an issue with dep. Migrating over to Go's modules might also solve this.
This line:
aggregateID, _ := uuid.NewV4()
works perfectly when building on my machine, but I receive the error./main.go:51:17: assignment mismatch: 2 variables but 1 values
when building with the following docker image:Any help would be greatly appreciated.
The text was updated successfully, but these errors were encountered: