summaryrefslogtreecommitdiff
path: root/vendor/github.com/client9/misspell/Dockerfile
diff options
context:
space:
mode:
authorChristoph Blecker <admin@toph.ca>2018-04-30 14:17:19 -0700
committerChristoph Blecker <admin@toph.ca>2018-04-30 14:17:19 -0700
commit0e09735df78e5cb098e6d052cb0b14ee2d87f02b (patch)
tree9743713dfc9f783243c52ec0106df85921f6c25e /vendor/github.com/client9/misspell/Dockerfile
parenta6c01b9a50e8b0bcaf101a616b27132617e5008f (diff)
Update deps
Diffstat (limited to 'vendor/github.com/client9/misspell/Dockerfile')
-rw-r--r--vendor/github.com/client9/misspell/Dockerfile37
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/github.com/client9/misspell/Dockerfile b/vendor/github.com/client9/misspell/Dockerfile
deleted file mode 100644
index 1b6486ec..00000000
--- a/vendor/github.com/client9/misspell/Dockerfile
+++ /dev/null
@@ -1,37 +0,0 @@
-FROM golang:1.8.1-alpine
-MAINTAINER https://github.com/client9/misspell
-
-# cache buster
-RUN echo 3
-
-# git is needed for "go get" below
-RUN apk add --no-cache git make
-
-# these are my standard testing / linting tools
-RUN /bin/true \
- && go get -u github.com/alecthomas/gometalinter \
- && gometalinter --install \
- && rm -rf /go/src /go/pkg
-#
-# * SCOWL word list
-#
-# Downloads
-# http://wordlist.aspell.net/dicts/
-# --> http://app.aspell.net/create
-#
-
-# use en_US large size
-# use regular size for others
-ENV SOURCE_US_BIG http://app.aspell.net/create?max_size=70&spelling=US&max_variant=2&diacritic=both&special=hacker&special=roman-numerals&download=wordlist&encoding=utf-8&format=inline
-
-# should be able tell difference between English variations using this
-ENV SOURCE_US http://app.aspell.net/create?max_size=60&spelling=US&max_variant=1&diacritic=both&download=wordlist&encoding=utf-8&format=inline
-ENV SOURCE_GB_ISE http://app.aspell.net/create?max_size=60&spelling=GBs&max_variant=2&diacritic=both&download=wordlist&encoding=utf-8&format=inline
-ENV SOURCE_GB_IZE http://app.aspell.net/create?max_size=60&spelling=GBz&max_variant=2&diacritic=both&download=wordlist&encoding=utf-8&format=inline
-ENV SOURCE_CA http://app.aspell.net/create?max_size=60&spelling=CA&max_variant=2&diacritic=both&download=wordlist&encoding=utf-8&format=inline
-
-RUN /bin/true \
- && mkdir /scowl-wl \
- && wget -O /scowl-wl/words-US-60.txt ${SOURCE_US} \
- && wget -O /scowl-wl/words-GB-ise-60.txt ${SOURCE_GB_ISE}
-