@cryptotaxi247 / kubo / commits / c8c104a17

docker: update the docker image

* Explicitly switch to buster. * Explicitly set the golang version (and use the latest patch release). * Explicitly set the busybox version. * Update the maintainer

Steven Allen committed Aug 16, 2019 at 13:26 UTC c8c104a17f97aaa5f6eea37405ef4fe092a7df7a
1 file changed +4 -4
Dockerfile
+4 -4
@@ -1,5 +1,5 @@
1 -FROM golang:1.12-stretch
2 -MAINTAINER Lars Gierth <lgierth@ipfs.io>
1 +FROM golang:1.12.9-buster
2 +MAINTAINER Steven Allen <steven@stebalien.com>
3
4 ENV SRC_DIR /go-ipfs
5
@@ -37,8 +37,8 @@ RUN apt-get update && apt-get install -y ca-certificates
37 RUN apt-get update && apt-get install -y fuse
38
39 # Now comes the actual target image, which aims to be as small as possible.
40 -FROM busybox:1-glibc
41 -MAINTAINER Lars Gierth <lgierth@ipfs.io>
40 +FROM busybox:1.31.0-glibc
41 +MAINTAINER Steven Allen <stven@stebalien.com>
42
43 # Get the ipfs binary, entrypoint script, and TLS CAs from the build container.
44 ENV SRC_DIR /go-ipfs