Skip to content

Commit

Permalink
add php session extension
Browse files Browse the repository at this point in the history
  • Loading branch information
idbentley committed Jan 21, 2025
1 parent ab1398a commit 4108cdc
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,25 @@ RUN dotnet --list-sdks

### Install PHP and Composer
#### Source: https://github.com/geshan/docker-php-composer-alpine/blob/master/Dockerfile
RUN apk --update --no-cache add wget \
curl \
git \
php82 \
php-ctype php-dom php-json php-mbstring php-phar php-tokenizer php-xml php-xmlwriter \
php-curl \
php-openssl \
php-iconv \
--repository http://nl.alpinelinux.org/alpine/edge/testing/
RUN apk --update --no-cache add \
wget \
curl \
git \
php83 \
php83-ctype \
php83-dom \
php83-json \
php83-mbstring \
php83-phar \
php83-tokenizer \
php83-xml \
php83-xmlwriter \
php83-curl \
php83-openssl \
php83-iconv \
php83-session \
--repository http://nl.alpinelinux.org/alpine/edge/testing/


RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer
RUN mkdir -p /var/www
Expand Down

0 comments on commit 4108cdc

Please sign in to comment.