2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 14:40:49 +00:00
restic/docker/build.sh
2021-09-21 08:23:33 +02:00

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 \
.