Skip to content

Commit 0a4ed20

Browse files
committed
feat: Alpine 3.20
1 parent 5bfed26 commit 0a4ed20

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.19
1+
FROM alpine:3.20
22
MAINTAINER Matthew Horwood <matt@horwood.biz>
33

44
# Install required deb packages
@@ -9,7 +9,9 @@ RUN apk update && \
99
php82-ctype php82-dom php82-session php82-mbstring curl \
1010
&& mkdir -p /var/www/html/ \
1111
&& mkdir -p /run/nginx \
12-
&& rm -f /var/cache/apk/*;
12+
&& rm -f /var/cache/apk/*; \
13+
[ -f /usr/bin/php ] && rm -f /usr/bin/php; \
14+
ln -s /usr/bin/php82 /usr/bin/php; \
1315

1416
# Calculate download URL
1517
ENV VERSION 5.2.1

0 commit comments

Comments
 (0)