We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c307a80 commit b6ea86cCopy full SHA for b6ea86c
Dockerfile
@@ -1,4 +1,5 @@
1
-ARG CLI_VERSION=2.10-php7.3
+ARG CLI_VERSION=2.12-php7.4
2
+
3
# Extend the Docksal CLI per https://docs.docksal.io/stack/extend-images/
4
FROM docksal/cli:${CLI_VERSION}
5
build.sh
@@ -3,7 +3,15 @@
set -e
CLI_VERSION="2.10"
6
-for tag in {"php7.2" "php7.3"}; do
+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
15
docker build \
16
--build-arg CLI_VERSION="${CLI_VERSION}-${tag}" \
17
-t outrigger/cli:${CLI_VERSION}-${tag} \
0 commit comments