mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-15 16:07:55 +03:00
11 lines
193 B
Bash
Executable File
11 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PHP_VERSION=$1
|
|
ARCH=$2
|
|
|
|
docker build \
|
|
--tag benramsey/ramsey-uuid:php-${PHP_VERSION}-${ARCH} \
|
|
--build-arg PHP_VERSION=${PHP_VERSION} \
|
|
--build-arg ARCH=${ARCH} \
|
|
.
|