Skip to content

Commit 230e4ef

Browse files
authored
housekeeping: dep -> mod, dependency updates (#46)
1 parent d353323 commit 230e4ef

File tree

8 files changed

+148
-368
lines changed

8 files changed

+148
-368
lines changed

.dockerignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*
2-
!Gopkg.*
32
!*.go
43
!server/*
4+
!go.mod
5+
!go.lock

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
FROM golang:1.10-alpine
1+
FROM golang:1.13-alpine
22

33
WORKDIR /go/src/github.com/ccbrown/gggtracker
44

5-
RUN apk add --no-cache git
6-
RUN wget -O - https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
5+
RUN apk add --no-cache git g++
76

87
ADD . .
9-
RUN dep ensure
108
RUN go generate ./...
11-
RUN go vet . && go test -v ./...
9+
RUN go vet .
10+
RUN go test -v ./...
1211
RUN go build .
1312

1413
ENTRYPOINT ["./gggtracker"]

Gopkg.lock

Lines changed: 0 additions & 293 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)