]> git.pld-linux.org Git - projects/cleanbuild.git/blob - docker/build-docker.sh
Use build cache to speedup local docker image rebuilds
[projects/cleanbuild.git] / docker / build-docker.sh
1 #!/bin/sh
2 # Use this script to build the image locally
3 set -eu
4
5 image=registry.gitlab.com/pld-linux/cleanbuild
6
7 script=$(readlink -f "$0")
8 dir=$(dirname "$0")
9 cd "$dir"
10
11 export DOCKER_BUILDKIT=1
12 docker build --pull -t $image .
This page took 0.046978 seconds and 3 git commands to generate.