fix depreciated call go get (#40)

* fix depreciated call go get

* it told me add go mod tidy
This commit is contained in:
Kevin Halpin
2022-03-20 18:04:28 -06:00
committed by GitHub
parent 8491708366
commit 4fd68bb874

View File

@@ -8,6 +8,8 @@ RUN apk add --no-cache git
WORKDIR /go/src/transmission-telegram WORKDIR /go/src/transmission-telegram
COPY . . COPY . .
RUN go mod init transmission-telegram
RUN go mod tidy
RUN go get -d -v ./... RUN go get -d -v ./...
RUN go install -v ./... RUN go install -v ./...