mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-05 08:21:18 -05:00
Hemna
9f66774541
This patch updates the main Dockerfile to work in multi-architecture build. Dockerfile now builds and install aprsd from pypi, not github.
13 lines
396 B
Bash
Executable File
13 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
# Official docker image build script.
|
|
|
|
VERSION="1.6.0"
|
|
|
|
# Use this script to locally build the docker image
|
|
docker buildx build --push --platform linux/arm/v7,linux/arm/v6,linux/arm64,linux/amd64 \
|
|
-t hemna6969/aprsd:$VERSION \
|
|
-t hemna6969/aprsd:latest \
|
|
-t harbor.hemna.com/hemna6969/aprsd:latest \
|
|
-t harbor.hemna.com/hemna6969/aprsd:$VERSION \
|
|
-f Dockerfile .
|