Skip to content

Commit

Permalink
Reenable memcache
Browse files Browse the repository at this point in the history
  • Loading branch information
jtrouth committed Dec 20, 2023
1 parent 0617c1c commit 9ba1c4d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,26 @@ RUN apt-get update && apt-get -qq install \
libpq-dev \
libmagickwand-dev \
libzip-dev \
# libmemcached-dev \
libmemcached-dev \
# memcached \
jq \
libonig-dev \
python3.10 \
pip \
redis-tools \
&& rm -rf /var/lib/apt/lists/*

RUN pip install supervisor --break-system-packages
COPY supervisord.conf /etc/supervisord.conf

RUN pecl install \
imagick \
# memcached \
memcached \
# memcache \
redis \
xdebug \
zlib
RUN docker-php-ext-install -j "$(nproc)" iconv bz2 bcmath mbstring pdo_pgsql gd zip intl
RUN docker-php-ext-enable imagick redis xdebug
RUN docker-php-ext-enable imagick memcached redis xdebug

RUN php -m

Expand Down

0 comments on commit 9ba1c4d

Please sign in to comment.