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 5bfed26 commit 0a4ed20Copy full SHA for 0a4ed20
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM alpine:3.19
+FROM alpine:3.20
2
MAINTAINER Matthew Horwood <matt@horwood.biz>
3
4
# Install required deb packages
@@ -9,7 +9,9 @@ RUN apk update && \
9
php82-ctype php82-dom php82-session php82-mbstring curl \
10
&& mkdir -p /var/www/html/ \
11
&& mkdir -p /run/nginx \
12
- && rm -f /var/cache/apk/*;
+ && rm -f /var/cache/apk/*; \
13
+ [ -f /usr/bin/php ] && rm -f /usr/bin/php; \
14
+ ln -s /usr/bin/php82 /usr/bin/php; \
15
16
# Calculate download URL
17
ENV VERSION 5.2.1
0 commit comments