Skip to content

Commit

Permalink
Fix space after newline character on php packages in generated Docker…
Browse files Browse the repository at this point in the history
…file
  • Loading branch information
luispabon committed Aug 16, 2024
1 parent 27c310e commit a01d667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PHPDocker/Template/dockerfile-php-fpm.conf.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR "{{ dockerWorkingDir }}"
{% if packages %}
RUN apt-get update \
&& apt-get -y --no-install-recommends install \
{{ packages | join(' \\ \n ') }} \
{{ packages | join(' \\\n ') }} \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
{% endif %}

0 comments on commit a01d667

Please sign in to comment.