restic/docker/build.sh

14 lines
210 B
Bash
Executable File

#!/bin/sh
set -e
export DOCKER_BUILDKIT=${DOCKER_BUILDKIT-1}
echo "Build docker image restic/restic:latest"
docker build \
--rm \
--pull \
--file docker/Dockerfile \
--tag restic/restic:latest \
.