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 4f62d4f commit d409c22Copy full SHA for d409c22
Makefile
@@ -75,7 +75,11 @@ endif
75
76
## Install backend dependencies
77
back:
78
- docker-compose up -d --remove-orphans php # PHP container is required for composer
+ docker-compose up -d --remove-orphans --no-deps php # PHP container is required for composer
79
+ifneq ($(strip $(ADD_PHP_EXT)),)
80
+# Install additional php extensions as this goal used in CI (todo stop doing it)
81
+ $(call php-0, apk add --no-cache $(ADD_PHP_EXT))
82
+endif
83
ifeq ($(INSTALL_DEV_DEPENDENCIES), TRUE)
84
@echo "INSTALL_DEV_DEPENDENCIES=$(INSTALL_DEV_DEPENDENCIES)"
85
@echo "Installing composer dependencies, including dev ones"
0 commit comments