-
Notifications
You must be signed in to change notification settings - Fork 5
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
Showing
4 changed files
with
67 additions
and
18 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
golang 1.19.6 |
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,4 +1,4 @@ | ||
FROM golang:1.15.3-alpine | ||
FROM golang:1.19.6-alpine | ||
|
||
RUN apk update && apk upgrade | ||
RUN apk add git | ||
|
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,31 +1,39 @@ | ||
module github.com/thesoenke/news-crawler | ||
|
||
go 1.15 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/advancedlogic/GoOse v0.0.0-20210820140952-9d5822d4a625 | ||
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76 | ||
github.com/jlubawy/go-boilerpipe v0.1.3 | ||
github.com/mmcdole/gofeed v1.0.0-beta2 | ||
github.com/spf13/cobra v0.0.3 | ||
gopkg.in/cheggaaa/pb.v1 v1.0.27 | ||
gopkg.in/neurosnap/sentences.v1 v1.0.6 | ||
gopkg.in/olivere/elastic.v5 v5.0.79 | ||
) | ||
|
||
require ( | ||
github.com/PuerkitoBio/goquery v1.5.0 // indirect | ||
github.com/advancedlogic/GoOse v0.0.0-20180825110909-6cd46faf50eb | ||
github.com/andybalholm/cascadia v1.0.0 // indirect | ||
github.com/araddon/dateparse v0.0.0-20181123171228-21df004e09ca // indirect | ||
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76 | ||
github.com/fatih/color v1.14.1 // indirect | ||
github.com/fatih/set v0.2.1 // indirect | ||
github.com/gigawattio/window v0.0.0-20180317192513-0f5467e35573 // indirect | ||
github.com/go-resty/resty/v2 v2.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jaytaylor/html2text v0.0.0-20180606194806-57d518f124b0 // indirect | ||
github.com/jlubawy/go-boilerpipe v0.1.3 | ||
github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-runewidth v0.0.4 // indirect | ||
github.com/mmcdole/gofeed v1.0.0-beta2 | ||
github.com/mmcdole/goxpp v0.0.0-20181012175147-0068e33feabf // indirect | ||
github.com/neurosnap/sentences v1.1.2 // indirect | ||
github.com/olekukonko/tablewriter v0.0.1 // indirect | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/pflag v1.0.3 // indirect | ||
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect | ||
golang.org/x/net v0.0.0-20190206173232-65e2d4e15006 // indirect | ||
golang.org/x/sys v0.0.0-20190209173611-3b5209105503 // indirect | ||
github.com/stretchr/testify v1.8.1 // indirect | ||
golang.org/x/net v0.0.0-20190628185345-da137c7871d7 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
gopkg.in/cheggaaa/pb.v1 v1.0.27 | ||
gopkg.in/neurosnap/sentences.v1 v1.0.6 | ||
gopkg.in/olivere/elastic.v5 v5.0.79 | ||
) |
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