1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-09-30 17:16:44 -04:00
aprsd/docker/build.sh
Hemna 9f66774541 Updated Dockerfile and build.sh
This patch updates the main Dockerfile to work in multi-architecture
build.  Dockerfile now builds and install aprsd from pypi, not github.
2021-02-18 16:15:49 -05:00

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 .