Guest User

Untitled

a guest
Aug 13th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. Your requirements could not be resolved to an installable set of packages.
  2.  
  3. Problem 1
  4. - vladimir-yuldashev/laravel-queue-rabbitmq v10.2.0 requires php-amqplib/php-amqplib ^2.11 -> satisfiable by php-amqplib/php-amqplib[2.11.x-dev, v2.11.0, v2.11.1, v2.11.2, v2.11.3].
  5. - vladimir-yuldashev/laravel-queue-rabbitmq v10.2.1 requires php-amqplib/php-amqplib ^2.11 -> satisfiable by php-amqplib/php-amqplib[2.11.x-dev, v2.11.0, v2.11.1, v2.11.2, v2.11.3].
  6. - vladimir-yuldashev/laravel-queue-rabbitmq v10.2.2 requires php-amqplib/php-amqplib ^2.11 -> satisfiable by php-amqplib/php-amqplib[2.11.x-dev, v2.11.0, v2.11.1, v2.11.2, v2.11.3].
  7. - php-amqplib/php-amqplib v2.11.3 requires ext-sockets * -> the requested PHP extension sockets is missing from your system.
  8. - php-amqplib/php-amqplib v2.11.2 requires ext-sockets * -> the requested PHP extension sockets is missing from your system.
  9. - php-amqplib/php-amqplib v2.11.1 requires ext-sockets * -> the requested PHP extension sockets is missing from your system.
  10. - php-amqplib/php-amqplib v2.11.0 requires ext-sockets * -> the requested PHP extension sockets is missing from your system.
  11. - php-amqplib/php-amqplib 2.11.x-dev requires ext-sockets * -> the requested PHP extension sockets is missing from your system.
  12. - Installation request for vladimir-yuldashev/laravel-queue-rabbitmq ^10.2 -> satisfiable by vladimir-yuldashev/laravel-queue-rabbitmq[v10.2.0, v10.2.1, v10.2.2].
  13.  
  14.  
  15. Dockerfile
  16.  
  17. FROM php:7.4-fpm-alpine
  18.  
  19. WORKDIR /var/www/html
  20.  
  21. ENV TIMEZONE Europe/Kiev
  22.  
  23. RUN apk add --update \
  24. # libzip-dev \
  25. # libsodium-dev \
  26. libmcrypt-dev \
  27. php-pgsql \
  28. php7-sockets \
  29. && apk add --update --no-cache oniguruma-dev \
  30.  
  31. && apk add --update tzdata \
  32. && cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtime \
  33. && echo "${TIMEZONE}" > /etc/timezone \
  34. && docker-php-ext-install mbstring sockets \
  35. && apk add --update icu-dev \
  36. && docker-php-ext-install intl \
  37. && apk add --update postgresql-dev \
  38. && docker-php-ext-install pdo pdo_mysql
  39.  
  40. # RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
  41.  
  42. RUN apk --update --no-cache add autoconf g++ make && \
  43. pecl install -f xdebug && \
  44. docker-php-ext-enable xdebug && \
  45. apk del --purge autoconf g++ make
  46.  
  47.  
  48.  
  49.  
  50.  
Add Comment
Please, Sign In to add comment