We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ce2ed96 + 34bfe40 commit 6ae9dc0Copy full SHA for 6ae9dc0
Dockerfile
@@ -43,8 +43,11 @@ RUN composer global require "hirak/prestissimo:^0.3" --prefer-dist --no-progress
43
COPY docker/app/docker-entrypoint.sh /usr/local/bin/docker-app-entrypoint
44
RUN chmod +x /usr/local/bin/docker-app-entrypoint
45
46
+# Allow to use development versions of Symfony
47
+ARG STABILITY=stable
48
+ENV STABILITY ${STABILITY}
49
+
50
# Download the Symfony skeleton and leverage Docker cache layers
-ENV STABILITY stable
51
RUN composer create-project "symfony/skeleton" . --stability=$STABILITY --prefer-dist --no-dev --no-progress --no-scripts --no-plugins --no-interaction
52
53
COPY . .
0 commit comments