Skip to content

Commit d409c22

Browse files
David Ferlayandypost
authored andcommitted
Prevent CI job prepare:back to try spinning dependant services
1 parent 4f62d4f commit d409c22

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ endif
7575

7676
## Install backend dependencies
7777
back:
78-
docker-compose up -d --remove-orphans php # PHP container is required for composer
78+
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
7983
ifeq ($(INSTALL_DEV_DEPENDENCIES), TRUE)
8084
@echo "INSTALL_DEV_DEPENDENCIES=$(INSTALL_DEV_DEPENDENCIES)"
8185
@echo "Installing composer dependencies, including dev ones"

0 commit comments

Comments
 (0)