Commit 2b71a2b079fd660bd20463edbaa912127fec540c
1 parent
d63ee590
Exists in
2.9
Composer
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
docker/php/Dockerfile
1 | 1 | FROM php:8.3-fpm-alpine |
2 | 2 | |
3 | +COPY --from=composer /usr/bin/composer /usr/bin/composer | |
4 | + | |
3 | 5 | LABEL maintainer="Portabilis <contato@portabilis.com.br>" |
4 | 6 | |
5 | 7 | ENV COMPOSER_ALLOW_SUPERUSER 1 |
... | ... | @@ -62,5 +64,3 @@ RUN docker-php-ext-enable \ |
62 | 64 | RUN apk del .phpize_deps |
63 | 65 | |
64 | 66 | RUN ln -s /var/www/ieducar/artisan /usr/local/bin/artisan |
65 | - | |
66 | -RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | ... | ... |