mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
14 lines
210 B
Bash
Executable File
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 \
|
|
.
|