Skip to content

Commit

Permalink
feat: Alpine 3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
mhzawadi committed Jul 1, 2024
1 parent 5bfed26 commit 0a4ed20
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.19
FROM alpine:3.20
MAINTAINER Matthew Horwood <[email protected]>

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

# Calculate download URL
ENV VERSION 5.2.1
Expand Down

0 comments on commit 0a4ed20

Please sign in to comment.