mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2025-12-09 08:22:39 +01:00
10 lines
247 B
Bash
Executable File
10 lines
247 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
WP_VERSION="${1:-}"
|
|
|
|
if [ -z "${WP_VERSION}" ]; then
|
|
echo "Error: WP_VERSION is null"
|
|
exit 1
|
|
fi
|
|
|
|
docker build --build-arg WP_VERSION=${WP_VERSION} --push --tag "nlss/wordpress:${WP_VERSION}" --tag "nlss/base-alpine:latest" . |