mirror of
https://github.com/restic/restic.git
synced 2024-12-22 07:43:03 +00:00
13 lines
210 B
Bash
Executable file
13 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 \
|
|
.
|