-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7fb094
commit d3879d8
Showing
3 changed files
with
7 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
FROM golang:1.8 | ||
FROM golang:1.15 | ||
MAINTAINER David Belicza | ||
|
||
ADD ./ /go/src/github.com/DavidBelicza/TextRank | ||
|
||
WORKDIR /go/src/github.com/DavidBelicza/TextRank | ||
|
||
CMD go get github.com/golang/dep/cmd/dep | ||
CMD dep ensure | ||
CMD /bin/bash | ||
CMD go mod vendor | ||
CMD /bin/bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
export GOPATH=/home/user/GolandProjects/idea-project-root | ||
|
||
~/go/bin/dep ensure | ||
go mod vendor | ||
go test ./... |