diff --git a/Dockerfile b/Dockerfile new file mode 100755 index 0000000..2097db4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ + +FROM golang:1.13-alpine as certs +RUN apk update && apk add --no-cache ca-certificates + +FROM busybox:glibc +RUN mkdir -p /var/log +WORKDIR /main +COPY --from=certs /etc/ssl/certs /etc/ssl/certs + +COPY . . + +ENV GOPATH="" +ENV MNT="/mnt/" +ENTRYPOINT ["/main/exec-rssmon3"] +CMD [] + diff --git a/vendor/github.com/PuerkitoBio/goquery/LICENSE b/vendor/github.com/PuerkitoBio/goquery/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/README.md b/vendor/github.com/PuerkitoBio/goquery/README.md old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/array.go b/vendor/github.com/PuerkitoBio/goquery/array.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/doc.go b/vendor/github.com/PuerkitoBio/goquery/doc.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/expand.go b/vendor/github.com/PuerkitoBio/goquery/expand.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/filter.go b/vendor/github.com/PuerkitoBio/goquery/filter.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/go.mod b/vendor/github.com/PuerkitoBio/goquery/go.mod old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/go.sum b/vendor/github.com/PuerkitoBio/goquery/go.sum old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/iteration.go b/vendor/github.com/PuerkitoBio/goquery/iteration.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/manipulation.go b/vendor/github.com/PuerkitoBio/goquery/manipulation.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/property.go b/vendor/github.com/PuerkitoBio/goquery/property.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/query.go b/vendor/github.com/PuerkitoBio/goquery/query.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/traversal.go b/vendor/github.com/PuerkitoBio/goquery/traversal.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/type.go b/vendor/github.com/PuerkitoBio/goquery/type.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/PuerkitoBio/goquery/utilities.go b/vendor/github.com/PuerkitoBio/goquery/utilities.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/andybalholm/cascadia/README.md b/vendor/github.com/andybalholm/cascadia/README.md old mode 100644 new mode 100755 diff --git a/vendor/github.com/andybalholm/cascadia/go.mod b/vendor/github.com/andybalholm/cascadia/go.mod old mode 100644 new mode 100755 diff --git a/vendor/github.com/andybalholm/cascadia/parser.go b/vendor/github.com/andybalholm/cascadia/parser.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/andybalholm/cascadia/selector.go b/vendor/github.com/andybalholm/cascadia/selector.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/andybalholm/cascadia/serialize.go b/vendor/github.com/andybalholm/cascadia/serialize.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/andybalholm/cascadia/specificity.go b/vendor/github.com/andybalholm/cascadia/specificity.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/golang-collections/go-datastructures/LICENSE b/vendor/github.com/golang-collections/go-datastructures/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/github.com/golang-collections/go-datastructures/queue/error.go b/vendor/github.com/golang-collections/go-datastructures/queue/error.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/golang-collections/go-datastructures/queue/priority_queue.go b/vendor/github.com/golang-collections/go-datastructures/queue/priority_queue.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/golang-collections/go-datastructures/queue/queue.go b/vendor/github.com/golang-collections/go-datastructures/queue/queue.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/golang-collections/go-datastructures/queue/ring.go b/vendor/github.com/golang-collections/go-datastructures/queue/ring.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/AUTHORS b/vendor/github.com/gorilla/feeds/AUTHORS old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/LICENSE b/vendor/github.com/gorilla/feeds/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/README.md b/vendor/github.com/gorilla/feeds/README.md old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/atom.go b/vendor/github.com/gorilla/feeds/atom.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/doc.go b/vendor/github.com/gorilla/feeds/doc.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/feed.go b/vendor/github.com/gorilla/feeds/feed.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/json.go b/vendor/github.com/gorilla/feeds/json.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/rss.go b/vendor/github.com/gorilla/feeds/rss.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/test.atom b/vendor/github.com/gorilla/feeds/test.atom old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/test.rss b/vendor/github.com/gorilla/feeds/test.rss old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/to-implement.md b/vendor/github.com/gorilla/feeds/to-implement.md old mode 100644 new mode 100755 diff --git a/vendor/github.com/gorilla/feeds/uuid.go b/vendor/github.com/gorilla/feeds/uuid.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/LICENSE b/vendor/github.com/mmcdole/gofeed/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/README.md b/vendor/github.com/mmcdole/gofeed/README.md old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/atom/feed.go b/vendor/github.com/mmcdole/gofeed/atom/feed.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/atom/parser.go b/vendor/github.com/mmcdole/gofeed/atom/parser.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/detector.go b/vendor/github.com/mmcdole/gofeed/detector.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/extensions/dublincore.go b/vendor/github.com/mmcdole/gofeed/extensions/dublincore.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/extensions/extensions.go b/vendor/github.com/mmcdole/gofeed/extensions/extensions.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/extensions/itunes.go b/vendor/github.com/mmcdole/gofeed/extensions/itunes.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/feed.go b/vendor/github.com/mmcdole/gofeed/feed.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/go.mod b/vendor/github.com/mmcdole/gofeed/go.mod old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/go.sum b/vendor/github.com/mmcdole/gofeed/go.sum old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/internal/shared/charsetconv.go b/vendor/github.com/mmcdole/gofeed/internal/shared/charsetconv.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/internal/shared/dateparser.go b/vendor/github.com/mmcdole/gofeed/internal/shared/dateparser.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/internal/shared/extparser.go b/vendor/github.com/mmcdole/gofeed/internal/shared/extparser.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/internal/shared/parseutils.go b/vendor/github.com/mmcdole/gofeed/internal/shared/parseutils.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/internal/shared/xmlbase.go b/vendor/github.com/mmcdole/gofeed/internal/shared/xmlbase.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/internal/shared/xmlsanitizer.go b/vendor/github.com/mmcdole/gofeed/internal/shared/xmlsanitizer.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/parser.go b/vendor/github.com/mmcdole/gofeed/parser.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/rss/feed.go b/vendor/github.com/mmcdole/gofeed/rss/feed.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/rss/parser.go b/vendor/github.com/mmcdole/gofeed/rss/parser.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/gofeed/translator.go b/vendor/github.com/mmcdole/gofeed/translator.go old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/goxpp/LICENSE b/vendor/github.com/mmcdole/goxpp/LICENSE old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/goxpp/README.md b/vendor/github.com/mmcdole/goxpp/README.md old mode 100644 new mode 100755 diff --git a/vendor/github.com/mmcdole/goxpp/xpp.go b/vendor/github.com/mmcdole/goxpp/xpp.go old mode 100644 new mode 100755