add Dockerfile to .dockerignore, which achieves the same effect of
quicker iteration, without having to manually add each separate file and
directory to the build image.
download go modules as its own image layer, rather than as part of
compiling perkeep. This reduces image build time by approximately 40%
in cases where modules are unchanged (109 to 67 seconds in my testing).
The only practical difference was that perkeep's builder was installing
libsqlite3-dev, which is no longer needed since c986ee3. This
simplifies our Dockerfile and bumps us to a more recent debian and
go version.
* Use modernc.org/sqlite
This way it can be enabled by default, as it is a cgo-free, Go-only package.
No need for build tags, conditional compilation (whether libsqlite3-dev is installed).
* make.go: Remove unused -sqlite flag
* Remove use of -sqlite flag
Revive this Dockerfile, convert it from camlistore to perkeep, and
make it a multi-stage build.
We still need to clean this up later and not hard-code the VERSION
file contents inside it. But this is something.
Change-Id: I2378449ffbcc2ff005c9d441e378266694d7d430
Also removed misc/buildbot while at it (which contained camput
references) since we don't use it anymore at all.
TODO: the OSX app seems to be relying on finding a binary in ../bin,
which we do not use anymore. This will probably need fixing.
Updates #981
Change-Id: I14220fbad2e81181330fca4bb2d2e5fe170e1bd6
Part of the project renaming, issue #981.
After this, users will need to mv their $GOPATH/src/camlistore.org to
$GOPATH/src/perkeep.org. Sorry.
This doesn't yet rename the tools like camlistored, camput, camget,
camtool, etc.
Also, this only moves the lru package to internal. More will move to
internal later.
Also, this doesn't yet remove the "/pkg/" directory. That'll likely
happen later.
This updates some docs, but not all.
devcam test now passes again, even with Go 1.10 (which requires vet
checks are clean too). So a bunch of vet tests are fixed in this CL
too, and a bunch of other broken tests are now fixed (introduced from
the past week of merging the CL backlog).
Change-Id: If580db1691b5b99f8ed6195070789b1f44877dd4