Fixed wrong chmod compsoer command

This commit is contained in:
Muhamad Aditya Prima 2024-12-27 01:13:27 +07:00
parent 587a5430f3
commit f83c5460f2
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ RUN /bin/mkdir -p /app ; \
/sbin/apk add --update --no-cache \ /sbin/apk add --update --no-cache \
php${PHP_VER_SHORT} php${PHP_VER_SHORT}-common \ php${PHP_VER_SHORT} php${PHP_VER_SHORT}-common \
php${PHP_VER_SHORT}-cli php${PHP_VER_SHORT}-phar ; \ php${PHP_VER_SHORT}-cli php${PHP_VER_SHORT}-phar ; \
/bin/chmod +x /tmp/setup.sh; /usr/local/bin/composer \ /bin/chmod +x /tmp/setup.sh /usr/local/bin/composer ; \
/bin/sh /tmp/setup.sh; \ /bin/sh /tmp/setup.sh; \
/bin/rm -f /tmp/*.sh; /bin/rm -f /tmp/*.sh;