We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88fafd7 commit 04f206cCopy full SHA for 04f206c
Dockerfile
@@ -15,9 +15,14 @@ RUN \
15
grep -qxF 'clear_env = no' /etc/php82/php-fpm.d/www.conf || echo 'clear_env = no' >> /etc/php82/php-fpm.d/www.conf && \
16
echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php82/php-fpm.conf
17
18
- # install sqlite3
+# install sqlite3
19
RUN apk add --no-cache php82-sqlite3
20
21
+# install memcached
22
+RUN apk add --no-cache \
23
+ php82-pecl-memcache@community \
24
+ php82-pecl-memcached@community
25
+
26
# healthchecks
27
HEALTHCHECK --interval=60s --timeout=30s --start-period=180s --start-interval=10s --retries=5 \
28
CMD curl -f http://localhost/health.html > /dev/null || exit 1
0 commit comments