fix: download the correct skeleton in the Dockerfile (#157)

This commit is contained in:
Kévin Dunglas 2021-06-18 14:40:11 +02:00 committed by GitHub
parent 74d44b8cc0
commit 33dd118a61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ ARG SYMFONY_VERSION=""
ENV SYMFONY_VERSION ${SYMFONY_VERSION} ENV SYMFONY_VERSION ${SYMFONY_VERSION}
# Download the Symfony skeleton and leverage Docker cache layers # 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 composer clear-cache
###> recipes ### ###> recipes ###