summaryrefslogtreecommitdiff
path: root/tools/build-builder
blob: 8174b4e6b19e77771495268ddb2d71661bb9b389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -e

## tools/build-builder
##
## Builds a Docker image containing the Debian package builder.

cd "$(dirname "$0")/.."

docker build \
	--platform "linux/arm64,linux/amd64" \
	--tag "pilcrow-debian-builder:$(tools/version)" \
	--tag "pilcrow-debian-builder:latest" \
	--file Dockerfile.builder \
	.