Skip to content

Commit b6ea86c

Browse files
committed
MASTER :: NOTICKET :: Update Dockerfile to use docksal/cli:2.12-php7.4
* Update the cli version so it coincides with the tags in docksal/cli
1 parent c307a80 commit b6ea86c

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
ARG CLI_VERSION=2.10-php7.3
1+
ARG CLI_VERSION=2.12-php7.4
2+
23
# Extend the Docksal CLI per https://docs.docksal.io/stack/extend-images/
34
FROM docksal/cli:${CLI_VERSION}
45

build.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@
33
set -e
44

55
CLI_VERSION="2.10"
6-
for tag in {"php7.2" "php7.3"}; do
6+
for tag in {"php7.2"}; do
7+
docker build \
8+
--build-arg CLI_VERSION="${CLI_VERSION}-${tag}" \
9+
-t outrigger/cli:${CLI_VERSION}-${tag} \
10+
.
11+
done
12+
13+
CLI_VERSION="2.12"
14+
for tag in {"php7.3" "php7.4"}; do
715
docker build \
816
--build-arg CLI_VERSION="${CLI_VERSION}-${tag}" \
917
-t outrigger/cli:${CLI_VERSION}-${tag} \

0 commit comments

Comments
 (0)