Gil Raphaelli
|
76354c69e9
|
provide details on glide checksum mistmach
before:
Step 6/13 : RUN wget ${GLIDE} -O /go/glide.tar.gz -q && tar xf /go/glide.tar.gz && mv /go/linux-amd64/glide /go/bin && [ "$(sha256sum /go/bin/glide | cut -d' ' -f1)" = "$GLIDE_HASH" ] && cd /go/src/github.com/pilosa/pilosa && make vendor && CGO_ENABLED=0 go install -a -ldflags "$ldflags" github.com/pilosa/pilosa/cmd/pilosa
---> Running in e2a6fcdf5930
The command '/bin/sh -c wget ${GLIDE} -O /go/glide.tar.gz -q && tar xf /go/glide.tar.gz && mv /go/linux-amd64/glide /go/bin && [ "$(sha256sum /go/bin/glide | cut -d' ' -f1)" = "$GLIDE_HASH" ] && cd /go/src/github.com/pilosa/pilosa && make vendor && CGO_ENABLED=0 go install -a -ldflags "$ldflags" github.com/pilosa/pilosa/cmd/pilosa' returned a non-zero code: 1
make: *** [docker] Error 1
after:
Step 6/13 : RUN wget ${GLIDE} -O /go/glide.tar.gz -q && tar xf /go/glide.tar.gz && mv /go/linux-amd64/glide /go/bin && echo "${GLIDE_HASH} /go/bin/glide" | shasum -a 256 -c - && cd /go/src/github.com/pilosa/pilosa && make vendor && CGO_ENABLED=0 go install -a -ldflags "$ldflags" github.com/pilosa/pilosa/cmd/pilosa
---> Running in 5aaaab387641
shasum: WARNING: 1 computed checksum did NOT match
/go/bin/glide: FAILED
The command '/bin/sh -c wget ${GLIDE} -O /go/glide.tar.gz -q && tar xf /go/glide.tar.gz && mv /go/linux-amd64/glide /go/bin && echo "${GLIDE_HASH} /go/bin/glide" | shasum -a 256 -c - && cd /go/src/github.com/pilosa/pilosa && make vendor && CGO_ENABLED=0 go install -a -ldflags "$ldflags" github.com/pilosa/pilosa/cmd/pilosa' returned a non-zero code: 1
make: *** [docker] Error 1
|
2017-05-12 16:48:47 -04:00 |
|
Cody Soyland
|
1f1a23accd
|
Move maintainer info to release stage, switch to LABEL instruction
|
2017-05-08 15:47:47 -05:00 |
|
Cody Soyland
|
37d0c4ce23
|
Use Docker multi-stage build in Dockerfile
This utilizes Docker multi-stage builds to produce a minimal Docker
image. Requires Docker 17.05.0.
|
2017-05-08 14:41:33 -05:00 |
|
Yuce Tekol
|
df59037942
|
Update golang to 1.8.1; fix pilosa binary version and build time; download precompiled glide
|
2017-05-04 02:05:09 +03:00 |
|
Matt Jaffee
|
60805d7f3e
|
change port 15000 to 10101 everywhere
|
2017-03-17 16:43:04 -05:00 |
|
Yuce Tekol
|
a446d7b9e6
|
Updated Dockerfile to use go 1.8 and ldflags; removed pilosactl stuff from Makefile, send ldflags to build container.
|
2017-03-09 11:14:01 +03:00 |
|
Yuce Tekol
|
c7a0aa371d
|
Installs glide in the docker container
|
2017-02-20 20:11:58 +03:00 |
|
Yuce Tekol
|
bf71ef036d
|
Added build container
|
2017-02-04 13:00:21 +03:00 |
|
Yuce Tekol
|
741c073dd0
|
Added initial Dockerfile and docker target
|
2017-02-03 17:37:44 +03:00 |
|