8 lines
554 B
Bash
Executable File
8 lines
554 B
Bash
Executable File
# torsearch-app is built from this base, and torsearch-worker & torsearch-scheduler are built from torsearch-app
|
|
# This image is used to speed up build times
|
|
export FRANKENPHP_TAG=php8.4
|
|
|
|
docker buildx build --platform=linux/amd64 -f docker/Dockerfile.base -t code.caldwell.digital/home/torsearch-base:${FRANKENPHP_TAG} -t code.caldwell.digital/home/torsearch-base:latest --build-arg "FRANKENPHP_TAG=${FRANKENPHP_TAG}" .
|
|
docker push code.caldwell.digital/home/torsearch-base:${FRANKENPHP_TAG}
|
|
docker push code.caldwell.digital/home/torsearch-base:latest
|