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 f98958e commit 5a30e92Copy full SHA for 5a30e92
.github/workflows/docker-build.yml
@@ -32,4 +32,4 @@ jobs:
32
platforms: linux/amd64,linux/arm64
33
tags: |
34
robinn/phpcacheadmin:${{ github.ref_name }}
35
-# robinn/phpcacheadmin:latest
+ robinn/phpcacheadmin:latest
Dockerfile
@@ -1,8 +1,8 @@
1
FROM php:8.4-apache
2
3
-RUN apt-get update && apt-get install -y git libz-dev libssl-dev libmemcached-dev \
4
- && pecl install redis memcached apcu \
5
- && docker-php-ext-enable redis memcached opcache apcu \
+RUN apt-get update && apt-get install -y git libz-dev libssl-dev \
+ && pecl install redis apcu \
+ && docker-php-ext-enable redis opcache apcu \
6
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
7
8
WORKDIR /var/www/html
0 commit comments