forked from TrueCloudLab/restic
2c4b0d975e
Restic cannot be built with Go 1.8.3 any more, it requires at least Go 1.9.0.
11 lines
325 B
Bash
Executable file
11 lines
325 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Build binary using golang docker image"
|
|
docker run --rm -ti \
|
|
-v `pwd`:/go/src/github.com/restic/restic \
|
|
-w /go/src/github.com/restic/restic golang:1.11.1-alpine go run build.go
|
|
|
|
echo "Build docker image restic/restic:latest"
|
|
docker build --rm -t restic/restic:latest -f docker/Dockerfile .
|