Skip to content

Commit 5a30e92

Browse files
committed
Fix docker
1 parent f98958e commit 5a30e92

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
platforms: linux/amd64,linux/arm64
3333
tags: |
3434
robinn/phpcacheadmin:${{ github.ref_name }}
35-
# robinn/phpcacheadmin:latest
35+
robinn/phpcacheadmin:latest

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM php:8.4-apache
22

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 \
3+
RUN apt-get update && apt-get install -y git libz-dev libssl-dev \
4+
&& pecl install redis apcu \
5+
&& docker-php-ext-enable redis opcache apcu \
66
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
77

88
WORKDIR /var/www/html

0 commit comments

Comments
 (0)