2021-02-10 11:58:02 -05:00
|
|
|
#!/bin/bash
|
2021-02-18 16:15:49 -05:00
|
|
|
# Official docker image build script.
|
2021-02-10 11:58:02 -05:00
|
|
|
|
2021-02-16 10:05:11 -05:00
|
|
|
VERSION="1.6.0"
|
|
|
|
|
2021-02-10 11:58:02 -05:00
|
|
|
# Use this script to locally build the docker image
|
2021-02-16 10:05:11 -05:00
|
|
|
docker buildx build --push --platform linux/arm/v7,linux/arm/v6,linux/arm64,linux/amd64 \
|
|
|
|
-t hemna6969/aprsd:$VERSION \
|
|
|
|
-t hemna6969/aprsd:latest \
|
2021-02-18 16:15:49 -05:00
|
|
|
-t harbor.hemna.com/hemna6969/aprsd:latest \
|
|
|
|
-t harbor.hemna.com/hemna6969/aprsd:$VERSION \
|
2021-02-16 10:05:11 -05:00
|
|
|
-f Dockerfile .
|