restic/docker/build.sh

14 lines
210 B
Bash
Raw Normal View History

2017-06-23 08:26:51 +00:00
#!/bin/sh
set -e
2021-09-20 12:18:48 +00:00
export DOCKER_BUILDKIT=${DOCKER_BUILDKIT-1}
2017-06-23 08:26:51 +00:00
echo "Build docker image restic/restic:latest"
2021-09-20 12:18:48 +00:00
docker build \
--rm \
--pull \
--file docker/Dockerfile \
--tag restic/restic:latest \
.