-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
33 lines (31 loc) · 893 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM php:8.4-bookworm
LABEL maintainer="Andrea Falco <[email protected]>"
# PHP ext-memcached
ARG PHPEXT_MEMCACHED_VERSION=3.3.0
RUN set -eux; \
persistentDeps=" \
libmemcached11 \
libmemcachedutil2 \
libzip4 \
"; \
buildDeps=" \
libmemcached-dev \
libssl-dev \
libzip-dev \
"; \
DEBIAN_FRONTEND=noninteractive apt-get update; \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
${persistentDeps} \
${buildDeps} \
; \
\
pecl bundle -d /usr/src/php/ext memcached-${PHPEXT_MEMCACHED_VERSION}; \
docker-php-ext-install -j$(nproc) memcached; \
\
DEBIAN_FRONTEND=noninteractive apt-get purge -y --auto-remove \
-o APT::AutoRemove::RecommendsImportant=false \
-o APT::AutoRemove::SuggestsImportant=false \
${buildDeps} \
; \
docker-php-source delete; \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*