From 33dd118a61ada847fb73967ab9e084e32281456e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Fri, 18 Jun 2021 14:40:11 +0200 Subject: [PATCH] fix: download the correct skeleton in the Dockerfile (#157) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae2bf6b..9e849bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -94,7 +94,7 @@ ARG SYMFONY_VERSION="" ENV SYMFONY_VERSION ${SYMFONY_VERSION} # Download the Symfony skeleton and leverage Docker cache layers -RUN composer create-project "symfony/skeleton ${SYMFONY_VERSION}" . --stability=$STABILITY --prefer-dist --no-dev --no-progress --no-interaction; \ +RUN composer create-project "${SKELETON} ${SYMFONY_VERSION}" . --stability=$STABILITY --prefer-dist --no-dev --no-progress --no-interaction; \ composer clear-cache ###> recipes ###