chore: less RUN in Dockerfile

This commit is contained in:
Maël Gangloff
2024-08-13 13:37:34 +02:00
parent de1274bddf
commit fc11388103
2 changed files with 7 additions and 7 deletions

View File

@@ -97,7 +97,10 @@ RUN set -eux; \
chmod +x bin/console; \
sync
RUN php bin/console assets:install
RUN yarn install
RUN yarn run build
RUN yarn run ttag:po2json
RUN set -eux; \
php bin/console assets:install; \
yarn install; \
yarn run build; \
yarn run ttag:po2json; \
sync