mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
5aa0deeff9
Update Go version to 1.11.1 in Docker build script
12 lines
327 B
Bash
Executable File
12 lines
327 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 .
|