restic/docker/build.sh

12 lines
325 B
Bash
Raw Normal View History

2017-06-23 10:26:51 +02:00
#!/bin/sh
set -e
echo "Build binary using golang docker image"
docker run --rm -ti \
-v "`pwd`":/go/src/github.com/restic/restic \
2021-03-04 23:24:26 +01:00
-w /go/src/github.com/restic/restic golang:1.16-alpine go run build.go
2017-06-23 10:26:51 +02:00
echo "Build docker image restic/restic:latest"
docker build --rm -t restic/restic:latest -f docker/Dockerfile .